gotosocial/cmd/gotosocial
Daenney 81f33c3b9f
[feature] Add media list command (#1943)
* [feature] Add media list command

This is an attempt to help alleviate #1776. Using admin media list
--local the full path to each local media file will be printed, with a
newline. The output of this should be feadable into backup tools in
order to allow to backup local media too. Together with the database
this should allow to fully recover from the loss of an instance.

The list command also gets a --remote flag for symmetry. In the case
of --remote we print the RemoteURL instead, the location the asset can
be retrieved from.

To get all media, you can run with --local and --remote.

* [bugfix] Fix the test failures

* [feature] Reimplement list media as top commands

This changes the implementation of admin media list --<variant> to two
separate top-level commands, list-local and list-remote.

The implementation now iterates over over the database in batches of 200
in order to avoid loading all media metadata into memory.

* [feature] Implement ListMedia with filter callback

This does away with the somewhat odd iterator-like structure we had
before and does away with most of the loop duplication in list-local and
list-remote. Instead they call GetAllMediaPaths with a filter func to
select the media they want. That's accumulated into a slice and
eventually returned.

* [bugfix] Simplify remote filter

Since we don't append the empty string anywhere, the remote filter can
be limited to returning RemoteURL, as that'll be an empty string for
local media.

* [docs] Add media list commands to CLI reference

---------

Co-authored-by: tobi <31960611+tsmethurst@users.noreply.github.com>
2023-07-07 11:35:05 +02:00
..
action [feature] Add media list command (#1943) 2023-07-07 11:35:05 +02:00
admin.go [feature] Add media list command (#1943) 2023-07-07 11:35:05 +02:00
common.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
debug.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
main.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
server.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00
testrig.go [chore] Improve copyright header handling (#1608) 2023-03-12 16:00:57 +01:00