mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 09:02:15 -06:00
upgrade wget downloader to use event hooks
This commit is contained in:
parent
a8768d05a9
commit
460709e6f3
|
@ -294,7 +294,7 @@ upgrade notes
|
||||||
* you can also do this with linux filesystem permissions; `chmod 111 music` will make it possible to access files and folders inside the `music` folder but not list the immediate contents -- also works with other software, not just copyparty
|
* you can also do this with linux filesystem permissions; `chmod 111 music` will make it possible to access files and folders inside the `music` folder but not list the immediate contents -- also works with other software, not just copyparty
|
||||||
|
|
||||||
* can I make copyparty download a file to my server if I give it a URL?
|
* can I make copyparty download a file to my server if I give it a URL?
|
||||||
* not really, but there is a [terrible hack](https://github.com/9001/copyparty/blob/hovudstraum/bin/mtag/wget.py) which makes it possible
|
* yes, using [hooks](https://github.com/9001/copyparty/blob/hovudstraum/bin/hooks/wget.py)
|
||||||
|
|
||||||
|
|
||||||
# accounts and volumes
|
# accounts and volumes
|
||||||
|
|
|
@ -1,6 +1,11 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
DEPRECATED -- replaced by event hooks;
|
||||||
|
https://github.com/9001/copyparty/blob/hovudstraum/bin/hooks/wget.py
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
use copyparty as a file downloader by POSTing URLs as
|
use copyparty as a file downloader by POSTing URLs as
|
||||||
application/x-www-form-urlencoded (for example using the
|
application/x-www-form-urlencoded (for example using the
|
||||||
message/pager function on the website)
|
message/pager function on the website)
|
||||||
|
|
|
@ -537,11 +537,11 @@ symbol legend,
|
||||||
* some of its unique features have been added to copyparty as former linx users have migrated
|
* some of its unique features have been added to copyparty as former linx users have migrated
|
||||||
* file expiration timers, filename randomization
|
* file expiration timers, filename randomization
|
||||||
* ✅ password-protected files
|
* ✅ password-protected files
|
||||||
* copyparty: password-protected folders and filekeys are
|
* copyparty: password-protected folders + filekeys to skip the folder password seem to cover most usecases
|
||||||
* ✅ file deletion keys
|
* ✅ file deletion keys
|
||||||
* ✅ download files as torrents
|
* ✅ download files as torrents
|
||||||
* ✅ remote uploads (send a link to the server and it downloads it)
|
* ✅ remote uploads (send a link to the server and it downloads it)
|
||||||
* copyparty: available as a [terrible hack](https://github.com/9001/copyparty/blob/hovudstraum/bin/mtag/wget.py)
|
* copyparty: available as [a plugin](https://github.com/9001/copyparty/blob/hovudstraum/bin/hooks/wget.py)
|
||||||
* ✅ can use S3 as storage backend; copyparty relies on rclone-mount for that
|
* ✅ can use S3 as storage backend; copyparty relies on rclone-mount for that
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue