Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F41666712
uploads.ex
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
uploads.ex
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Mix.Tasks.Pleroma.Uploads
do
use
Mix.Task
import
Mix.Pleroma
alias
Pleroma.Upload
alias
Pleroma.Uploaders.Local
require
Logger
@log_every
50
@shortdoc
"Migrates uploads from local to remote storage"
@moduledoc
File
.
read!
(
"docs/administration/CLI_tasks/uploads.md"
)
def
run
([
"migrate_local"
,
target_uploader
|
args
])
do
delete?
=
Enum
.
member?
(
args
,
"--delete"
)
start_pleroma
()
local_path
=
Pleroma.Config
.
get!
([
Local
,
:uploads
])
uploader
=
Module
.
concat
(
Pleroma.Uploaders
,
target_uploader
)
unless
Code
.
ensure_loaded?
(
uploader
)
do
raise
(
"The uploader
#{
inspect
(
uploader
)
}
is not an existing/loaded module."
)
end
target_enabled?
=
Pleroma.Config
.
get
([
Upload
,
:uploader
])
==
uploader
unless
target_enabled?
do
Pleroma.Config
.
put
([
Upload
,
:uploader
],
uploader
)
end
shell_info
(
"Migrating files from local
#{
local_path
}
to
#{
to_string
(
uploader
)
}
"
)
if
delete?
do
shell_info
(
"Attention: uploaded files will be deleted, hope you have backups! (--delete ; cancel with ^C)"
)
:timer
.
sleep
(
:timer
.
seconds
(
5
))
end
uploads
=
File
.
ls!
(
local_path
)
|>
Enum
.
map
(
fn
id
->
root_path
=
Path
.
join
(
local_path
,
id
)
cond
do
File
.
dir?
(
root_path
)
->
files
=
for
file
<-
File
.
ls!
(
root_path
),
do
:
{
id
,
file
,
Path
.
join
([
root_path
,
file
])}
case
List
.
first
(
files
)
do
{
id
,
file
,
path
}
->
{%
Pleroma.Upload
{
id
:
id
,
name
:
file
,
path
:
id
<>
"/"
<>
file
,
tempfile
:
path
},
root_path
}
_
->
nil
end
File
.
exists?
(
root_path
)
->
file
=
Path
.
basename
(
id
)
hash
=
Path
.
rootname
(
id
)
{%
Pleroma.Upload
{
id
:
hash
,
name
:
file
,
path
:
file
,
tempfile
:
root_path
},
root_path
}
true
->
nil
end
end
)
|>
Enum
.
filter
(
&
&1
)
total_count
=
length
(
uploads
)
shell_info
(
"Found
#{
total_count
}
uploads"
)
uploads
|>
Task
.
async_stream
(
fn
{
upload
,
root_path
}
->
case
Upload
.
store
(
upload
,
uploader
:
uploader
,
filters
:
[],
size_limit
:
nil
)
do
{
:ok
,
_
}
->
if
delete?
,
do
:
File
.
rm_rf!
(
root_path
)
Logger
.
debug
(
"uploaded:
#{
inspect
(
upload
.
path
)
}
#{
inspect
(
upload
)
}
"
)
:ok
error
->
shell_error
(
"failed to upload
#{
inspect
(
upload
.
path
)
}
:
#{
inspect
(
error
)
}
"
)
end
end
,
timeout
:
150_000
)
|>
Stream
.
chunk_every
(
@log_every
)
# credo:disable-for-next-line Credo.Check.Warning.UnusedEnumOperation
|>
Enum
.
reduce
(
0
,
fn
done
,
count
->
count
=
count
+
length
(
done
)
shell_info
(
"Uploaded
#{
count
}
/
#{
total_count
}
files"
)
count
end
)
shell_info
(
"Done!"
)
end
end
File Metadata
Details
Attached
Mime Type
text/x-ruby
Expires
Sun, Feb 15, 5:45 AM (15 h, 10 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1096656
Default Alt Text
uploads.ex (2 KB)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment