├── .github └── FUNDING.yml ├── .gitignore ├── Cargo.toml ├── Dockerfile ├── GOODBYE.md ├── LICENSE ├── README.md ├── sample.env ├── src ├── api │ ├── info.rs │ └── mod.rs ├── auth.rs ├── embed.rs ├── helper.rs ├── main.rs ├── oembed.rs ├── pixiv │ ├── mod.rs │ └── model.rs ├── proxy.rs └── state.rs └── templates └── artwork.html /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: hazelthewitch 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazelTheWitch/phixiv/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazelTheWitch/phixiv/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazelTheWitch/phixiv/HEAD/Dockerfile -------------------------------------------------------------------------------- /GOODBYE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazelTheWitch/phixiv/HEAD/GOODBYE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazelTheWitch/phixiv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazelTheWitch/phixiv/HEAD/README.md -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazelTheWitch/phixiv/HEAD/sample.env -------------------------------------------------------------------------------- /src/api/info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazelTheWitch/phixiv/HEAD/src/api/info.rs -------------------------------------------------------------------------------- /src/api/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazelTheWitch/phixiv/HEAD/src/api/mod.rs -------------------------------------------------------------------------------- /src/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazelTheWitch/phixiv/HEAD/src/auth.rs -------------------------------------------------------------------------------- /src/embed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazelTheWitch/phixiv/HEAD/src/embed.rs -------------------------------------------------------------------------------- /src/helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazelTheWitch/phixiv/HEAD/src/helper.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazelTheWitch/phixiv/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/oembed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazelTheWitch/phixiv/HEAD/src/oembed.rs -------------------------------------------------------------------------------- /src/pixiv/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazelTheWitch/phixiv/HEAD/src/pixiv/mod.rs -------------------------------------------------------------------------------- /src/pixiv/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazelTheWitch/phixiv/HEAD/src/pixiv/model.rs -------------------------------------------------------------------------------- /src/proxy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazelTheWitch/phixiv/HEAD/src/proxy.rs -------------------------------------------------------------------------------- /src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazelTheWitch/phixiv/HEAD/src/state.rs -------------------------------------------------------------------------------- /templates/artwork.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazelTheWitch/phixiv/HEAD/templates/artwork.html --------------------------------------------------------------------------------