mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-01 06:14:07 +00:00
37 lines
855 B
Elixir
37 lines
855 B
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.Uploaders.Local do
|
|
@behaviour Pleroma.Uploaders.Uploader
|
|
|
|
def get_file(_) do
|
|
{:ok, {:static_dir, upload_path()}}
|
|
end
|
|
|
|
def put_file(upload) do
|
|
{local_path, file} =
|
|
case Enum.reverse(Path.split(upload.path)) do
|
|
[file] ->
|
|
{upload_path(), file}
|
|
|
|
[file | folders] ->
|
|
path = Path.join([upload_path()] ++ Enum.reverse(folders))
|
|
File.mkdir_p!(path)
|
|
{path, file}
|
|
end
|
|
|
|
result_file = Path.join(local_path, file)
|
|
|
|
if not File.exists?(result_file) do
|
|
File.cp!(upload.tempfile, result_file)
|
|
end
|
|
|
|
:ok
|
|
end
|
|
|
|
def upload_path do
|
|
Pleroma.Config.get!([__MODULE__, :uploads])
|
|
end
|
|
end
|