Commit Graph

79 Commits

Author SHA1 Message Date
dafcdc009b Merge pull request 'Implement paging' (#9) from 2-implement-paging into main
Reviewed-on: #9
2022-05-27 22:50:51 +02:00
0701088fbc
Update the documentation 2022-05-27 22:47:52 +02:00
c13ce71c69
Add feed item limit support
* The feed item limit defaults to the default page size (50) if not
  provided
* Move caching from response to URL fetch results; add helper functions
* Add a helper function to set the paging query of an URL
* Modify paging so we don't retrieve more than the feed item limit
2022-05-27 22:47:52 +02:00
78fc93fedf
Retrieve all pages by following the next URL
* Derserialize the paging information
* Parse each next URL; handle URL parse errors
* Use a default page size of 50; pass offset 0 to count by item index
2022-05-27 22:47:52 +02:00
09ee0b9ba9
Make default_file_type functions const 2022-05-27 22:39:53 +02:00
10bbd9b495
Cargo update 2022-05-26 22:12:31 +02:00
cde2a34e91
Fix documentation 2022-05-26 22:12:01 +02:00
11c78a6cc8
Drop the get_ prefix for functions 2022-05-26 21:25:37 +02:00
11b32acfb4
Use an URL parser for the URL passed to youtube-dl 2022-05-26 21:23:38 +02:00
451c07a09e
Implement caching (closes: #3)
* Enable the `async` feature for the `cached` crate
* Make the types that we cache implement `Clone`
* Rename the argument of mixcloud::redirect_url` because of this issue:
  https://github.com/jaemk/cached/issues/114
2022-05-26 21:20:10 +02:00
b4c0188fba
Drop some unnecessary bloat/unused crates 2022-05-26 20:40:18 +02:00
3ec1879932
Replace own youtube-dl impl by youtube_dl crate (refs: #8)
* Drop the depend on the `tokio` crate, because we don't need to
  run our own processes anymore.
* Remove unnecessary error variant for command failure
2022-05-26 20:38:51 +02:00
a67df934bf
Enable some more lints; fix clippy issues 2022-05-26 20:03:44 +02:00
b53365a293
Implement proper error logging and handling (closes: #6)
* Use the `thiserror` crate to make our own error type
* Implement Rocket's `Responder` type for the error type
* Adjust all methods to use the error type
* Small documentation tweaks
2022-05-26 19:57:24 +02:00
9d1bfd8351
Add a changelog 2022-05-24 11:28:10 +02:00
326a29480b
Install the templates; set env var for location 2022-05-24 11:28:09 +02:00
8afd4b17ba
Add a simple index page that explains the usage 2022-05-24 11:05:59 +02:00
fb02ddd242
Clarify it more with an example URL 2022-05-24 10:51:37 +02:00
4ff6d14859
Explain how to use the service; tweak text 2022-05-24 10:49:02 +02:00
18f4a5f575
Add feed category and iTunes extension attributes 2022-05-24 10:35:10 +02:00
85cc0b06b2
Second round of rework to make more podcast clients happy
* Prefix the feed handler path with '/feed'
* Mount both handlers under `/` now that they have a prefix in the path
* Provide the backend to the feed and download handler in their paths
* Use the ID as filename download handler, also add an extension
2022-05-24 10:04:06 +02:00
a4546c1641
Use redirection instead of streaming
This might solve some issues with clients that don't get the file type
and size and don't know what to do?
Also, we're not longer involved in the download, yay! (For now.)
2022-05-23 22:21:38 +02:00
1ab89f87c4
Don't use Markdown link formatting 2022-05-23 22:20:02 +02:00
fc2f200ee5
Also pass the backend to the download handler 2022-05-23 22:19:13 +02:00
c6789d51fb
Add Debian packaging via cargo-deb
* Add the required metadata to `Cargo.toml`
* Add a systemd unit file
* Use `Rocket.toml.example` as the default configuration
2022-05-20 16:54:09 +02:00
ff36880e4f
Use the same description everywhere 2022-05-20 16:43:39 +02:00
d7f209aecc
Add README.md and LICENSE file
Also link the files from the crate and include `README.md` as the main
crate documentation
2022-05-20 16:19:58 +02:00
6efae911de
Configure URL via config; dd Rocket.toml example file
Also ignore a local `Rocket.toml`; it can be used for development
without committing it.
2022-05-20 16:15:33 +02:00
aac6248878
Initial import into Git 2022-05-20 16:14:55 +02:00