Merge pull request #72 from hay-kot/feat/disable-file-attachment
feat: disable file attachment
This commit is contained in:
commit
bc26fe87a5
4 changed files with 18 additions and 5 deletions
14
README.MD
14
README.MD
|
@ -11,8 +11,8 @@
|
||||||
MicroBin is a super tiny, feature rich, configurable, self-contained and self-hosted paste bin web application. It is very easy to set up and use, and will only require a few megabytes of memory and disk storage. It takes only a couple minutes to set it up, why not give it a try now?
|
MicroBin is a super tiny, feature rich, configurable, self-contained and self-hosted paste bin web application. It is very easy to set up and use, and will only require a few megabytes of memory and disk storage. It takes only a couple minutes to set it up, why not give it a try now?
|
||||||
|
|
||||||
[![Deploy to Render](https://render.com/images/deploy-to-render-button.svg)](https://render.com/deploy?repo=https://github.com/szabodanika/microbin)
|
[![Deploy to Render](https://render.com/images/deploy-to-render-button.svg)](https://render.com/deploy?repo=https://github.com/szabodanika/microbin)
|
||||||
|
|
||||||
Or install from Cargo:
|
Or install from Cargo:
|
||||||
|
|
||||||
`cargo install microbin`
|
`cargo install microbin`
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ And run with your custom configuration:
|
||||||
- Automatic dark mode (follows system preferences)
|
- Automatic dark mode (follows system preferences)
|
||||||
- Very little CSS and absolutely no JS (see [water.css](https://github.com/kognise/water.css))
|
- Very little CSS and absolutely no JS (see [water.css](https://github.com/kognise/water.css))
|
||||||
- Most of the above can be toggled on and off!
|
- Most of the above can be toggled on and off!
|
||||||
|
|
||||||
## 1 Usage
|
## 1 Usage
|
||||||
|
|
||||||
### What is a "pasta" anyway?
|
### What is a "pasta" anyway?
|
||||||
|
@ -222,7 +222,7 @@ server {
|
||||||
listen 443 ssl; # managed by Certbot
|
listen 443 ssl; # managed by Certbot
|
||||||
|
|
||||||
server_name microbin.myserver.com;
|
server_name microbin.myserver.com;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
# Make sure to change the port if you are not running MicroBin at 8080!
|
# Make sure to change the port if you are not running MicroBin at 8080!
|
||||||
proxy_pass http://127.0.0.1:8080$request_uri;
|
proxy_pass http://127.0.0.1:8080$request_uri;
|
||||||
|
@ -234,7 +234,7 @@ server {
|
||||||
|
|
||||||
# Limit content size - I have 1GB because my MicroBin server is private, no one else will use it.
|
# Limit content size - I have 1GB because my MicroBin server is private, no one else will use it.
|
||||||
client_max_body_size 1024M;
|
client_max_body_size 1024M;
|
||||||
|
|
||||||
ssl_certificate /etc/letsencrypt/live/microbin.myserver.com/fullchain.pem; # managed by Certbot
|
ssl_certificate /etc/letsencrypt/live/microbin.myserver.com/fullchain.pem; # managed by Certbot
|
||||||
ssl_certificate_key /etc/letsencrypt/live/microbin.myserver.com/privkey.pem; # managed by Certbot
|
ssl_certificate_key /etc/letsencrypt/live/microbin.myserver.com/privkey.pem; # managed by Certbot
|
||||||
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
||||||
|
@ -329,3 +329,7 @@ Displays your MicroBin's version information.
|
||||||
### --wide
|
### --wide
|
||||||
|
|
||||||
Changes the maximum width of the UI from 720 pixels to 1080 pixels.
|
Changes the maximum width of the UI from 720 pixels to 1080 pixels.
|
||||||
|
|
||||||
|
### --no-file-upload
|
||||||
|
|
||||||
|
Disables and hides the file upload option in the UI.
|
|
@ -59,4 +59,7 @@ pub struct Args {
|
||||||
|
|
||||||
#[clap(long, env="MICROBIN_WIDE")]
|
#[clap(long, env="MICROBIN_WIDE")]
|
||||||
pub wide: bool,
|
pub wide: bool,
|
||||||
|
|
||||||
|
#[clap(short, long, env="MICROBIN_NO_FILE_UPLOAD")]
|
||||||
|
pub no_file_upload: bool,
|
||||||
}
|
}
|
|
@ -106,6 +106,10 @@ pub async fn create(
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
"file" => {
|
"file" => {
|
||||||
|
if ARGS.no_file_upload {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
let path = field.content_disposition().get_filename();
|
let path = field.content_disposition().get_filename();
|
||||||
|
|
||||||
let path = match path {
|
let path = match path {
|
||||||
|
|
|
@ -59,11 +59,13 @@
|
||||||
<input type="hidden" name="syntax-highlight" value="none">
|
<input type="hidden" name="syntax-highlight" value="none">
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
||||||
|
{% if !args.no_file_upload %}
|
||||||
<div>
|
<div>
|
||||||
<label>File attachment</label>
|
<label>File attachment</label>
|
||||||
<br>
|
<br>
|
||||||
<input style="width: 100%;" type="file" id="file" name="file">
|
<input style="width: 100%;" type="file" id="file" name="file">
|
||||||
</div>
|
</div>
|
||||||
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<label>Content</label>
|
<label>Content</label>
|
||||||
<br>
|
<br>
|
||||||
|
|
Loading…
Reference in a new issue