├── .gitignore ├── .vscode └── launch.json ├── Cargo.toml ├── Dockerfile ├── LICENSE ├── README.md ├── TODO.md ├── docker-compose.yml ├── resources ├── highlight.js ├── languages.json └── style.css ├── src ├── context.rs ├── main.rs ├── sfss_format │ ├── fileflags.rs │ ├── filetype.rs │ ├── mod.rs │ └── sfss_format.rs ├── sfss_templates │ └── mod.rs ├── tests.rs └── utils.rs └── templates ├── code.hbs ├── index.hbs ├── upload.hbs ├── upload_api.hbs ├── upload_api_password.hbs └── upload_password.hbs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/TODO.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /resources/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/resources/highlight.js -------------------------------------------------------------------------------- /resources/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/resources/languages.json -------------------------------------------------------------------------------- /resources/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/resources/style.css -------------------------------------------------------------------------------- /src/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/src/context.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/sfss_format/fileflags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/src/sfss_format/fileflags.rs -------------------------------------------------------------------------------- /src/sfss_format/filetype.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/src/sfss_format/filetype.rs -------------------------------------------------------------------------------- /src/sfss_format/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/src/sfss_format/mod.rs -------------------------------------------------------------------------------- /src/sfss_format/sfss_format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/src/sfss_format/sfss_format.rs -------------------------------------------------------------------------------- /src/sfss_templates/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/src/sfss_templates/mod.rs -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/src/tests.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/src/utils.rs -------------------------------------------------------------------------------- /templates/code.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/templates/code.hbs -------------------------------------------------------------------------------- /templates/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/templates/index.hbs -------------------------------------------------------------------------------- /templates/upload.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/templates/upload.hbs -------------------------------------------------------------------------------- /templates/upload_api.hbs: -------------------------------------------------------------------------------- 1 | URL={{url}}{{webroot}}/{{code}} -------------------------------------------------------------------------------- /templates/upload_api_password.hbs: -------------------------------------------------------------------------------- 1 | URL={{url}}{{webroot}}/{{code}} 2 | PASSWORD={{password}} -------------------------------------------------------------------------------- /templates/upload_password.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxkrage/sfss/HEAD/templates/upload_password.hbs --------------------------------------------------------------------------------