Compare commits
No commits in common. "master" and "docker-deploy-action-debug" have entirely different histories.
master
...
docker-dep
54 changed files with 1027 additions and 5228 deletions
1
.envrc
1
.envrc
|
@ -1 +0,0 @@
|
||||||
use flake
|
|
4
.github/FUNDING.yml
vendored
4
.github/FUNDING.yml
vendored
|
@ -1,4 +0,0 @@
|
||||||
# These are supported funding model platforms
|
|
||||||
|
|
||||||
github: szabodanika
|
|
||||||
ko_fi: dani_sz
|
|
BIN
.github/index.png
vendored
BIN
.github/index.png
vendored
Binary file not shown.
Before Width: | Height: | Size: 1.5 MiB |
BIN
.github/logo.png
vendored
BIN
.github/logo.png
vendored
Binary file not shown.
Before Width: | Height: | Size: 33 KiB |
13
.github/workflows/build_nix.yml
vendored
13
.github/workflows/build_nix.yml
vendored
|
@ -1,13 +0,0 @@
|
||||||
name: "Build legacy Nix package on Ubuntu"
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: cachix/install-nix-action@v12
|
|
||||||
- name: Building package
|
|
||||||
run: nix-build . -A defaultPackage.x86_64-linux
|
|
196
.github/workflows/docker.yml
vendored
196
.github/workflows/docker.yml
vendored
|
@ -1,165 +1,23 @@
|
||||||
name: Release
|
name: Docker Image
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
branches:
|
||||||
|
- "master"
|
||||||
tags:
|
tags:
|
||||||
- v[0-9]+.[0-9]+.[0-9]+*
|
- "v*"
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- "master"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release:
|
docker_image:
|
||||||
name: Publish to Github Relases
|
name: Build & push docker image to DockerHub
|
||||||
outputs:
|
|
||||||
rc: ${{ steps.check-tag.outputs.rc }}
|
|
||||||
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- target: aarch64-unknown-linux-musl
|
|
||||||
os: ubuntu-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: ""
|
|
||||||
- target: aarch64-apple-darwin
|
|
||||||
os: macos-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: ""
|
|
||||||
- target: aarch64-pc-windows-msvc
|
|
||||||
os: windows-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: "--no-default-features"
|
|
||||||
- target: x86_64-apple-darwin
|
|
||||||
os: macos-latest
|
|
||||||
cargo-flags: ""
|
|
||||||
- target: x86_64-pc-windows-msvc
|
|
||||||
os: windows-latest
|
|
||||||
cargo-flags: ""
|
|
||||||
- target: x86_64-unknown-linux-musl
|
|
||||||
os: ubuntu-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: ""
|
|
||||||
- target: i686-unknown-linux-musl
|
|
||||||
os: ubuntu-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: ""
|
|
||||||
- target: i686-pc-windows-msvc
|
|
||||||
os: windows-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: ""
|
|
||||||
- target: armv7-unknown-linux-musleabihf
|
|
||||||
os: ubuntu-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: ""
|
|
||||||
- target: arm-unknown-linux-musleabihf
|
|
||||||
os: ubuntu-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: ""
|
|
||||||
- target: mips-unknown-linux-musl
|
|
||||||
os: ubuntu-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: "--no-default-features"
|
|
||||||
- target: mipsel-unknown-linux-musl
|
|
||||||
os: ubuntu-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: "--no-default-features"
|
|
||||||
- target: mips64-unknown-linux-gnuabi64
|
|
||||||
os: ubuntu-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: "--no-default-features"
|
|
||||||
- target: mips64el-unknown-linux-gnuabi64
|
|
||||||
os: ubuntu-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: "--no-default-features"
|
|
||||||
runs-on: ${{matrix.os}}
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Check Tag
|
|
||||||
id: check-tag
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
tag=${GITHUB_REF##*/}
|
|
||||||
echo "::set-output name=version::$tag"
|
|
||||||
if [[ "$tag" =~ [0-9]+.[0-9]+.[0-9]+$ ]]; then
|
|
||||||
echo "::set-output name=rc::false"
|
|
||||||
else
|
|
||||||
echo "::set-output name=rc::true"
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
- name: Install Rust Toolchain Components
|
|
||||||
uses: actions-rs/toolchain@v1
|
|
||||||
with:
|
|
||||||
override: true
|
|
||||||
target: ${{ matrix.target }}
|
|
||||||
toolchain: stable
|
|
||||||
profile: minimal # minimal component installation (ie, no documentation)
|
|
||||||
|
|
||||||
- name: Show Version Information (Rust, cargo, GCC)
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
gcc --version || true
|
|
||||||
rustup -V
|
|
||||||
rustup toolchain list
|
|
||||||
rustup default
|
|
||||||
cargo -V
|
|
||||||
rustc -V
|
|
||||||
|
|
||||||
- name: Build
|
|
||||||
uses: actions-rs/cargo@v1
|
|
||||||
with:
|
|
||||||
use-cross: ${{ matrix.use-cross }}
|
|
||||||
command: build
|
|
||||||
args: --locked --release --target=${{ matrix.target }} ${{ matrix.cargo-flags }}
|
|
||||||
|
|
||||||
- name: Build Archive
|
|
||||||
shell: bash
|
|
||||||
id: package
|
|
||||||
env:
|
|
||||||
target: ${{ matrix.target }}
|
|
||||||
version: ${{ steps.check-tag.outputs.version }}
|
|
||||||
run: |
|
|
||||||
set -euxo pipefail
|
|
||||||
|
|
||||||
bin=${GITHUB_REPOSITORY##*/}
|
|
||||||
src=`pwd`
|
|
||||||
dist=$src/dist
|
|
||||||
name=$bin-$version-$target
|
|
||||||
executable=target/$target/release/$bin
|
|
||||||
|
|
||||||
if [[ "$RUNNER_OS" == "Windows" ]]; then
|
|
||||||
executable=$executable.exe
|
|
||||||
fi
|
|
||||||
|
|
||||||
mkdir $dist
|
|
||||||
cp $executable $dist
|
|
||||||
cd $dist
|
|
||||||
|
|
||||||
if [[ "$RUNNER_OS" == "Windows" ]]; then
|
|
||||||
archive=$dist/$name.zip
|
|
||||||
7z a $archive *
|
|
||||||
echo "::set-output name=archive::`pwd -W`/$name.zip"
|
|
||||||
else
|
|
||||||
archive=$dist/$name.tar.gz
|
|
||||||
tar czf $archive *
|
|
||||||
echo "::set-output name=archive::$archive"
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Publish Archive
|
|
||||||
uses: softprops/action-gh-release@v0.1.5
|
|
||||||
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
|
||||||
with:
|
|
||||||
draft: false
|
|
||||||
files: ${{ steps.package.outputs.archive }}
|
|
||||||
prerelease: ${{ steps.check-tag.outputs.rc == 'true' }}
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
docker:
|
|
||||||
name: Publish to Docker Hub
|
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: release
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Checkout repo
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Docker meta
|
- name: Docker meta
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v4
|
uses: docker/metadata-action@v4
|
||||||
|
@ -169,24 +27,24 @@ jobs:
|
||||||
type=semver,pattern={{version}}
|
type=semver,pattern={{version}}
|
||||||
type=semver,pattern={{major}}.{{minor}}
|
type=semver,pattern={{major}}.{{minor}}
|
||||||
type=semver,pattern={{major}}
|
type=semver,pattern={{major}}
|
||||||
- name: Set up QEMU
|
|
||||||
uses: docker/setup-qemu-action@v1
|
- name: Setup QEMU
|
||||||
- name: Set up Docker Buildx
|
uses: docker/setup-qemu-action@v2
|
||||||
uses: docker/setup-buildx-action@v1
|
|
||||||
- name: Login to DockerHub
|
- name: Setup Docker Buildx
|
||||||
uses: docker/login-action@v1
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
|
- name: Login DockerHub
|
||||||
|
if: github.event_name != 'pull_request'
|
||||||
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
- name: Build and push
|
|
||||||
uses: docker/build-push-action@v2
|
- name: Build & push
|
||||||
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
build-args: |
|
platforms: linux/amd64, linux/arm64
|
||||||
REPO=${{ github.repository }}
|
|
||||||
VER=${{ github.ref_name }}
|
|
||||||
platforms: |
|
|
||||||
linux/amd64
|
|
||||||
linux/arm64
|
|
||||||
push: ${{ github.ref_type == 'tag' }}
|
push: ${{ github.ref_type == 'tag' }}
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
labels: ${{ steps.meta.outputs.labels }}
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
|
|
154
.github/workflows/gh-release.yml
vendored
154
.github/workflows/gh-release.yml
vendored
|
@ -1,154 +0,0 @@
|
||||||
name: GitHub Release
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- v[0-9]+.[0-9]+.[0-9]+*
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
release:
|
|
||||||
name: Publish to Github Releases
|
|
||||||
outputs:
|
|
||||||
rc: ${{ steps.check-tag.outputs.rc }}
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- target: aarch64-unknown-linux-musl
|
|
||||||
os: ubuntu-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: ""
|
|
||||||
- target: aarch64-apple-darwin
|
|
||||||
os: macos-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: ""
|
|
||||||
- target: aarch64-pc-windows-msvc
|
|
||||||
os: windows-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: "--no-default-features"
|
|
||||||
- target: x86_64-apple-darwin
|
|
||||||
os: macos-latest
|
|
||||||
cargo-flags: ""
|
|
||||||
- target: x86_64-pc-windows-msvc
|
|
||||||
os: windows-latest
|
|
||||||
cargo-flags: ""
|
|
||||||
- target: x86_64-unknown-linux-musl
|
|
||||||
os: ubuntu-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: ""
|
|
||||||
- target: i686-unknown-linux-musl
|
|
||||||
os: ubuntu-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: ""
|
|
||||||
- target: i686-pc-windows-msvc
|
|
||||||
os: windows-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: ""
|
|
||||||
- target: armv7-unknown-linux-musleabihf
|
|
||||||
os: ubuntu-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: ""
|
|
||||||
- target: arm-unknown-linux-musleabihf
|
|
||||||
os: ubuntu-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: ""
|
|
||||||
- target: mips-unknown-linux-musl
|
|
||||||
os: ubuntu-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: "--no-default-features"
|
|
||||||
- target: mipsel-unknown-linux-musl
|
|
||||||
os: ubuntu-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: "--no-default-features"
|
|
||||||
- target: mips64-unknown-linux-gnuabi64
|
|
||||||
os: ubuntu-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: "--no-default-features"
|
|
||||||
- target: mips64el-unknown-linux-gnuabi64
|
|
||||||
os: ubuntu-latest
|
|
||||||
use-cross: true
|
|
||||||
cargo-flags: "--no-default-features"
|
|
||||||
runs-on: ${{matrix.os}}
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Check Tag
|
|
||||||
id: check-tag
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
tag=${GITHUB_REF##*/}
|
|
||||||
echo "::set-output name=version::$tag"
|
|
||||||
if [[ "$tag" =~ [0-9]+.[0-9]+.[0-9]+$ ]]; then
|
|
||||||
echo "::set-output name=rc::false"
|
|
||||||
else
|
|
||||||
echo "::set-output name=rc::true"
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
- name: Install Rust Toolchain Components
|
|
||||||
uses: actions-rs/toolchain@v1
|
|
||||||
with:
|
|
||||||
override: true
|
|
||||||
target: ${{ matrix.target }}
|
|
||||||
toolchain: stable
|
|
||||||
profile: minimal # minimal component installation (ie, no documentation)
|
|
||||||
|
|
||||||
- name: Show Version Information (Rust, cargo, GCC)
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
gcc --version || true
|
|
||||||
rustup -V
|
|
||||||
rustup toolchain list
|
|
||||||
rustup default
|
|
||||||
cargo -V
|
|
||||||
rustc -V
|
|
||||||
|
|
||||||
- name: Build
|
|
||||||
uses: actions-rs/cargo@v1
|
|
||||||
with:
|
|
||||||
use-cross: ${{ matrix.use-cross }}
|
|
||||||
command: build
|
|
||||||
args: --locked --release --target=${{ matrix.target }} ${{ matrix.cargo-flags }}
|
|
||||||
|
|
||||||
- name: Build Archive
|
|
||||||
shell: bash
|
|
||||||
id: package
|
|
||||||
env:
|
|
||||||
target: ${{ matrix.target }}
|
|
||||||
version: ${{ steps.check-tag.outputs.version }}
|
|
||||||
run: |
|
|
||||||
set -euxo pipefail
|
|
||||||
|
|
||||||
bin=${GITHUB_REPOSITORY##*/}
|
|
||||||
src=`pwd`
|
|
||||||
dist=$src/dist
|
|
||||||
name=$bin-$version-$target
|
|
||||||
executable=target/$target/release/$bin
|
|
||||||
|
|
||||||
if [[ "$RUNNER_OS" == "Windows" ]]; then
|
|
||||||
executable=$executable.exe
|
|
||||||
fi
|
|
||||||
|
|
||||||
mkdir $dist
|
|
||||||
cp $executable $dist
|
|
||||||
cd $dist
|
|
||||||
|
|
||||||
if [[ "$RUNNER_OS" == "Windows" ]]; then
|
|
||||||
archive=$dist/$name.zip
|
|
||||||
7z a $archive *
|
|
||||||
echo "::set-output name=archive::`pwd -W`/$name.zip"
|
|
||||||
else
|
|
||||||
archive=$dist/$name.tar.gz
|
|
||||||
tar czf $archive *
|
|
||||||
echo "::set-output name=archive::$archive"
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Publish Archive
|
|
||||||
uses: softprops/action-gh-release@v0.1.5
|
|
||||||
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
|
||||||
with:
|
|
||||||
draft: false
|
|
||||||
files: ${{ steps.package.outputs.archive }}
|
|
||||||
prerelease: ${{ steps.check-tag.outputs.rc == 'true' }}
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
14
.gitignore
vendored
14
.gitignore
vendored
|
@ -1,14 +0,0 @@
|
||||||
# Generated by Cargo
|
|
||||||
# will have compiled files and executables
|
|
||||||
debug/
|
|
||||||
target/
|
|
||||||
result
|
|
||||||
.direnv/
|
|
||||||
|
|
||||||
# These are backup files generated by rustfmt
|
|
||||||
**/*.rs.bk
|
|
||||||
|
|
||||||
# MSVC Windows builds of rustc generate these, which store debugging information
|
|
||||||
*.pdb
|
|
||||||
|
|
||||||
pasta_data/*
|
|
2444
Cargo.lock
generated
2444
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
16
Cargo.toml
16
Cargo.toml
|
@ -1,14 +1,14 @@
|
||||||
[package]
|
[package]
|
||||||
name = "karton"
|
name = "microbin"
|
||||||
version = "2.0.1"
|
version = "1.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Jade <jade@schrottkatze.de>", "Daniel Szabo <daniel.szabo99@outlook.com>"]
|
authors = ["Daniel Szabo <daniel.szabo99@outlook.com>"]
|
||||||
license = "BSD-3-Clause"
|
license = "BSD-3-Clause"
|
||||||
description = "Simple, performant, configurable, entirely self-contained Pastebin and URL shortener."
|
description = "Simple, performant, configurable, entirely self-contained Pastebin and URL shortener."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
homepage = "https://gitlab.com/obsidianical/microbin"
|
homepage = "https://github.com/szabodanika/microbin"
|
||||||
repository = "https://gitlab.com/obsidianical/microbin"
|
repository = "https://github.com/szabodanika/microbin"
|
||||||
keywords = ["pastebin", "karton", "microbin", "actix", "selfhosted"]
|
keywords = ["pastebin", "pastabin", "microbin", "actix", "selfhosted"]
|
||||||
categories = ["pastebins"]
|
categories = ["pastebins"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
@ -31,10 +31,6 @@ env_logger = "0.9.0"
|
||||||
actix-web-httpauth = "0.6.0"
|
actix-web-httpauth = "0.6.0"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
syntect = "5.0"
|
syntect = "5.0"
|
||||||
qrcode-generator = "4.1.6"
|
|
||||||
rust-embed = "6.4.2"
|
|
||||||
mime_guess = "2.0.4"
|
|
||||||
harsh = "0.2"
|
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
lto = true
|
lto = true
|
||||||
|
|
16
Dockerfile
16
Dockerfile
|
@ -1,4 +1,4 @@
|
||||||
FROM docker.io/rust:latest as build
|
FROM rust:latest as build
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
@ -8,11 +8,10 @@ RUN \
|
||||||
DEBIAN_FRONTEND=noninteractive \
|
DEBIAN_FRONTEND=noninteractive \
|
||||||
apt-get update &&\
|
apt-get update &&\
|
||||||
apt-get -y install ca-certificates tzdata &&\
|
apt-get -y install ca-certificates tzdata &&\
|
||||||
CARGO_NET_GIT_FETCH_WITH_CLI=true \
|
|
||||||
cargo build --release
|
cargo build --release
|
||||||
|
|
||||||
# https://hub.docker.com/r/bitnami/minideb
|
# https://hub.docker.com/r/bitnami/minideb
|
||||||
FROM docker.io/bitnami/minideb:latest
|
FROM bitnami/minideb:latest
|
||||||
|
|
||||||
# microbin will be in /app
|
# microbin will be in /app
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
@ -26,12 +25,9 @@ COPY --from=build \
|
||||||
/etc/ssl/certs/ca-certificates.crt \
|
/etc/ssl/certs/ca-certificates.crt \
|
||||||
/etc/ssl/certs/ca-certificates.crt
|
/etc/ssl/certs/ca-certificates.crt
|
||||||
|
|
||||||
# copy built executable
|
# copy built exacutable
|
||||||
COPY --from=build \
|
COPY --from=build \
|
||||||
/app/target/release/karton \
|
/app/target/release/microbin \
|
||||||
/usr/bin/karton
|
/usr/bin/microbin
|
||||||
|
|
||||||
# Expose webport used for the webserver to the docker runtime
|
ENTRYPOINT ["microbin"]
|
||||||
EXPOSE 8080
|
|
||||||
|
|
||||||
ENTRYPOINT ["karton"]
|
|
331
README.MD
Normal file
331
README.MD
Normal file
|
@ -0,0 +1,331 @@
|
||||||
|
|
||||||
|
![Screenshot](git/index.png)
|
||||||
|
|
||||||
|
# MicroBin
|
||||||
|
|
||||||
|
|
||||||
|
![Build](https://github.com/szabodanika/microbin/actions/workflows/rust.yml/badge.svg)
|
||||||
|
![crates.io](https://img.shields.io/crates/v/microbin.svg)
|
||||||
|
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Or install from Cargo:
|
||||||
|
|
||||||
|
`cargo install microbin`
|
||||||
|
|
||||||
|
And run with your custom configuration:
|
||||||
|
|
||||||
|
`microbin --port 8080 --highlightsyntax --editable`
|
||||||
|
|
||||||
|
### Features
|
||||||
|
- Is very small
|
||||||
|
- Animal names instead of random numbers for pasta identifiers (64 animals)
|
||||||
|
- File uploads (eg. server.com/file/pig-dog-cat)
|
||||||
|
- Raw pasta text (eg. server.com/raw/pig-dog-cat)
|
||||||
|
- URL shortening and redirection
|
||||||
|
- Very simple database (JSON + files) for portability, easy backups and integration
|
||||||
|
- Listing and manually removing pastas (/pastalist)
|
||||||
|
- Private and public pastas
|
||||||
|
- Editable and final pastas
|
||||||
|
- Never expiring pastas
|
||||||
|
- Automatically expiring pastas
|
||||||
|
- Syntax highlighting
|
||||||
|
- Entirely self-contained executable, MicroBin is a single file!
|
||||||
|
- Automatic dark mode (follows system preferences)
|
||||||
|
- 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!
|
||||||
|
|
||||||
|
## 1 Usage
|
||||||
|
|
||||||
|
### What is a "pasta" anyway?
|
||||||
|
|
||||||
|
In microbin, a pasta can be:
|
||||||
|
- A text that you want to paste from one machine to another, eg. some code,
|
||||||
|
- A file that you want to share, eg. a video that is too large for Discord, a zip with a code project in it or an image,
|
||||||
|
- A URL redirect.
|
||||||
|
|
||||||
|
### When is MicroBin useful?
|
||||||
|
|
||||||
|
You can use MicroBin
|
||||||
|
- As a URL shortener/redirect service,
|
||||||
|
- To send long texts to other people,
|
||||||
|
- To send large files to other people,
|
||||||
|
- To serve content on the web, eg. configuration files for testing, images, or any other file content using the Raw functionality,
|
||||||
|
- To move files between your desktop and a server you access from the console,
|
||||||
|
- As a "postbox" service where people can upload their files or texts, but they cannot see or remove what others sent you - just disable the pastalist page
|
||||||
|
- To take notes! Simply create an editable pasta.
|
||||||
|
|
||||||
|
...and many other things, why not get creative?
|
||||||
|
|
||||||
|
### Creating a Pasta
|
||||||
|
|
||||||
|
Navigate to the root of your server, for example https://microbin.myserver.com/. This should show you a form where you will at the very least see an expiration selector, a file attachment input, a content text field and a green save button. Depending on your configuration there miight also be a syntax highlight selector, an editable checkbox and a private ceckbox.
|
||||||
|
|
||||||
|
Use the expiration dropdown to choose how long you want your pasta to exist. When the selected time has expired, it will be removed from the server. The content can be any text, including plain text, code, html, even a URL. A URL is a special case, because when you open the pasta again, it will redirect you to that URL instead of showing it as a text. Entering content is optional, and so is the file attachment. If you want, you can even submit a pasta completely empty.
|
||||||
|
|
||||||
|
You will be redirected to the URL of the pasta, which will end with a few animal names. If you remember those animals, you can simply type them in on another machine and open your pasta elsewhere.
|
||||||
|
|
||||||
|
If you have editable pastas enabled and you check the editable checkbox, then later on there will be an option to change the text content of your pasta. Selecting the private checkbox will simply prevent your pasta to show up on the pasta list page, if that is enabled.
|
||||||
|
|
||||||
|
If you have syntax higlighting enabled, then select your language from the dropdown, or leave it as none if you just want to upload plain with no highlighting.
|
||||||
|
|
||||||
|
### Listing Pastas
|
||||||
|
|
||||||
|
If you have pasta listing enabled, then there is a pasta list option in the navigation bar, which will list all the pastas on the server in two groups: regular pastas and URL redirects (pastas containing nothing but a URL). If you have private pastas enabled, they will not show up here at all.
|
||||||
|
|
||||||
|
From the pasta list page, you will be able to view individual pastas by clicking on their animal identifiers on the lest, view their raw contrent by clicking on the Raw button, remove them, and if you have editable pastas enabled, then open them in edit view.
|
||||||
|
|
||||||
|
### Use MicroBin from the console with cURL
|
||||||
|
|
||||||
|
Simple text Pasta: `curl -d "expiration=10min&content=This is a test pasta" -X POST https://microbin.myserver.com/create`
|
||||||
|
|
||||||
|
File contents: `curl -d "expiration=10min&content=$( < mypastafile.txt )" -X POST https://microbin.myserver.com/create`
|
||||||
|
|
||||||
|
Available expiration options:
|
||||||
|
`1min`, `10min`, `1hour`, `24hour`, `1week`, `never`
|
||||||
|
|
||||||
|
Use cURL to read the pasta: `curl https://microbin.myserver.com/rawpasta/fish-pony-crow`,
|
||||||
|
|
||||||
|
or to download the pasta: `curl https://microbin.myserver.com/rawpasta/fish-pony-crow > output.txt` (use /file instead of /rawpasta to download attached file).
|
||||||
|
|
||||||
|
## 2 Installation
|
||||||
|
|
||||||
|
### From Cargo
|
||||||
|
|
||||||
|
Install from Cargo:
|
||||||
|
|
||||||
|
`cargo install microbin`
|
||||||
|
|
||||||
|
Remember, MicroBin will create your database and file storage wherever you execute it. I recommend that you create a folder for it first and execute it there:
|
||||||
|
|
||||||
|
`mkdir ~/microbin/`
|
||||||
|
|
||||||
|
`cd ~/microbin/`
|
||||||
|
|
||||||
|
`microbin --highlightsyntax --editable`
|
||||||
|
|
||||||
|
### From AUR (for any Arch-based distro)
|
||||||
|
Install `microbin` package from AUR and start/enable microbin systemd service. Systemd will start server on 127.0.0.1:8080 with almost all features enabled, but this can be changed in `/etc/microbin.conf`.
|
||||||
|
|
||||||
|
### Building MicroBin
|
||||||
|
|
||||||
|
Simply clone the repository, build it with `cargo build --release` and run the `microbin` executable in the created `target/release/` directory. It will start listening on 0.0.0.0:8080. You can change the port or bind address with CL arguments `-p (--port)` or `-b (--bind)` respectively . For other arguments see [the Wiki](https://github.com/szabodanika/microbin/wiki).
|
||||||
|
|
||||||
|
```
|
||||||
|
git clone https://github.com/szabodanika/microbin.git
|
||||||
|
cd microbin
|
||||||
|
cargo build --release
|
||||||
|
./target/release/microbin -p 80
|
||||||
|
```
|
||||||
|
|
||||||
|
### Building Docker Image
|
||||||
|
|
||||||
|
MicroBin includes a Dockerfile. To build the image, follow these steps:
|
||||||
|
|
||||||
|
```
|
||||||
|
git clone https://github.com/szabodanika/microbin.git
|
||||||
|
cd microbin
|
||||||
|
docker build -t microbin-docker .
|
||||||
|
```
|
||||||
|
|
||||||
|
Then, for `docker compose` you can repurpose the following example in your compose file:
|
||||||
|
|
||||||
|
```
|
||||||
|
services:
|
||||||
|
paste:
|
||||||
|
image: microbin-docker
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "80:8080"
|
||||||
|
volumes:
|
||||||
|
- ./microbin-data:/usr/local/bin/pasta_data
|
||||||
|
```
|
||||||
|
To pass command line arguments you must edit the Dockerfile and change the CMD line. In this example we add the syntax highlighting option and enable private pastas:
|
||||||
|
|
||||||
|
```
|
||||||
|
CMD ["microbin", "--highlightsyntax", "--private"]
|
||||||
|
```
|
||||||
|
You then need to rebuild the image and recreate your container.
|
||||||
|
|
||||||
|
|
||||||
|
**Note:** If you are getting the following error about domain name resolution:
|
||||||
|
|
||||||
|
```
|
||||||
|
warning: spurious network error (2 tries remaining): failed to resolve address for github.com: Temporary failure in name resolution; class=Net (12)
|
||||||
|
warning: spurious network error (1 tries remaining): failed to resolve address for github.com: Temporary failure in name resolution; class=Net (12)
|
||||||
|
```
|
||||||
|
|
||||||
|
You might need to run `docker build` with the `--network` option:
|
||||||
|
|
||||||
|
```
|
||||||
|
docker build --network host -t microbin-docker .
|
||||||
|
```
|
||||||
|
|
||||||
|
### MicroBin as a service
|
||||||
|
|
||||||
|
To install it as a service on your Linux machine, create a file called `/etc/systemd/system/microbin.service`, paste this into it with the `[username]` and `[path to installation directory]` replaced with the actual values. If you installed MicroBin from cargo, your executable will be in your cargo directory, e.g. `/Users/daniel/.cargo/bin/microbin`.
|
||||||
|
|
||||||
|
```
|
||||||
|
[Unit]
|
||||||
|
Description=MicroBin
|
||||||
|
After=network.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=simple
|
||||||
|
Restart=always
|
||||||
|
User=[username]
|
||||||
|
RootDirectory=/
|
||||||
|
WorkingDirectory=[path to installation directory]
|
||||||
|
ExecStart=[path to installation directory]/target/release/microbin
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
|
```
|
||||||
|
|
||||||
|
Here is my `microbin.service` for example, with some optional arguments:
|
||||||
|
|
||||||
|
|
||||||
|
```
|
||||||
|
[Unit]
|
||||||
|
Description=MicroBin
|
||||||
|
After=network.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=simple
|
||||||
|
Restart=always
|
||||||
|
User=ubuntu
|
||||||
|
RootDirectory=/
|
||||||
|
|
||||||
|
# This is the directory where I want to run microbin. It will store all the pastas here.
|
||||||
|
WorkingDirectory=/home/ubuntu/server/microbin
|
||||||
|
|
||||||
|
# This is the location of my executable - I also have 2 optional features enabled
|
||||||
|
ExecStart=/home/ubuntu/server/microbin/target/release/microbin --editable --highlightsyntax
|
||||||
|
|
||||||
|
# I keep my installation in the home directory, so I need to add this
|
||||||
|
ProtectHome=off
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
|
```
|
||||||
|
|
||||||
|
Then start the service with `systemctl start microbin` and enable it on boot with `systemctl enable microbin`. To update your MicroBin, simply update or clone the repository again, build it again, and then restart the service with `systemctl restart microbin`. An update will never affect your existing pastas, unless there is a breaking change in the data model (in which case MicroBin just won't be able to import your DB), which will always be mentioned explicitly.
|
||||||
|
|
||||||
|
### NGINX configuration
|
||||||
|
|
||||||
|
```
|
||||||
|
server {
|
||||||
|
# I have HTTPS enabled using certbot - you can use HTTP of course if you want!
|
||||||
|
listen 443 ssl; # managed by Certbot
|
||||||
|
|
||||||
|
server_name microbin.myserver.com;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
# 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_set_header Host $host;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Limit content size - I have 1GB because my MicroBin server is private, no one else will use it.
|
||||||
|
client_max_body_size 1024M;
|
||||||
|
|
||||||
|
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
|
||||||
|
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
||||||
|
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
|
||||||
|
}
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
## 3 Command Line Arguments
|
||||||
|
|
||||||
|
There is an ever expanding list of customisations built into MicroBin so you can use it the way you want. Instead of a configuration file, we simply use arguments that you pass to the executable, making the workflow even simpler. Read the following options and if you cannot find what you need, you can always open an issue at our GitHub repository and request a new feature!
|
||||||
|
|
||||||
|
### --auth-username [AUTH_USERNAME]
|
||||||
|
|
||||||
|
Require username for HTTP Basic Authentication when visiting the service. If `--auth-username` is set but `--auth-password ` is not, just leave the password field empty when logging in. You can also just go to https://username:password@yourserver.net or https://username@yourserver.net if password is not set instead of typing into the password
|
||||||
|
|
||||||
|
### --auth-password [AUTH_PASSWORD]
|
||||||
|
|
||||||
|
Require password for HTTP Basic Authentication when visiting the service. Will not have any affect unless `--auth-username` is also set. If `--auth-username` is set but `--auth-password ` is not, just leave the password field empty when logging in. You can also just go to https://username:password@yourserver.net or https://username@yourserver.net if password is not set instead of typing into the password prompt.
|
||||||
|
|
||||||
|
### --editable
|
||||||
|
|
||||||
|
Enables editable pastas. You will still be able to make finalised pastas but there will be an extra checkbox to make your new pasta editable from the pasta list or the pasta view page.
|
||||||
|
|
||||||
|
### --footer_text [TEXT]
|
||||||
|
|
||||||
|
Replaces the default footer text with your own. If you want to hide the footer, use --hide-footer instead.
|
||||||
|
|
||||||
|
### -h, --help
|
||||||
|
|
||||||
|
Show all commands in the terminal.
|
||||||
|
|
||||||
|
### --hide-footer
|
||||||
|
|
||||||
|
Hides the footer on every page.
|
||||||
|
|
||||||
|
### --hide-header
|
||||||
|
|
||||||
|
Hides the navigation bar on every page.
|
||||||
|
|
||||||
|
### --hide-logo
|
||||||
|
|
||||||
|
Hides the MicroBin logo from the navigation bar on every page.
|
||||||
|
|
||||||
|
### --no-listing
|
||||||
|
|
||||||
|
Disables the /pastalist endpoint, essentially making all pastas private.
|
||||||
|
|
||||||
|
### --highlightsyntax
|
||||||
|
|
||||||
|
Enables syntax highlighting support. When creating a new pasta, a new dropdown selector will be added where you can select your pasta's syntax, or just leave it empty for no highlighting.
|
||||||
|
|
||||||
|
### -p, --port [PORT]
|
||||||
|
|
||||||
|
Default value: 8080
|
||||||
|
|
||||||
|
Sets the port for the server will be listening on.
|
||||||
|
|
||||||
|
|
||||||
|
### -b, --bind [ADDRESS]
|
||||||
|
|
||||||
|
Default value: 0.0.0.0
|
||||||
|
|
||||||
|
Sets the bind address for the server will be listening on. Both ipv4 and ipv6 are supported.
|
||||||
|
|
||||||
|
### --private
|
||||||
|
|
||||||
|
Enables private pastas. Adds a new checkbox to make your pasta private, which then won't show up on the pastalist page. With the URL to your pasta, it will still be accessible.
|
||||||
|
|
||||||
|
### --pure-html
|
||||||
|
|
||||||
|
Disables main CSS styling, just uses a few in-line stylings for the layout. With this option you will lose dark-mode support.
|
||||||
|
|
||||||
|
### --readonly
|
||||||
|
|
||||||
|
Disables adding/editing/removing pastas entirely.
|
||||||
|
|
||||||
|
### --title [TITLE]
|
||||||
|
|
||||||
|
Replaces "MicroBin" with your title of choice in the navigation bar.
|
||||||
|
|
||||||
|
### -t, --threads [THREADS]
|
||||||
|
|
||||||
|
Default value: 1
|
||||||
|
|
||||||
|
Number of workers MicroBin is allowed to have. Increase this to the number of CPU cores you have if you want to go beast mode, but for personal use one worker is enough.
|
||||||
|
|
||||||
|
### -V, --version
|
||||||
|
|
||||||
|
Displays your MicroBin's version information.
|
||||||
|
|
||||||
|
### --wide
|
||||||
|
|
||||||
|
Changes the maximum width of the UI from 720 pixels to 1080 pixels.
|
76
README.md
76
README.md
|
@ -1,76 +0,0 @@
|
||||||
# Karton
|
|
||||||
|
|
||||||
A small, rusty pastebin with URL shortener functionality.
|
|
||||||
|
|
||||||
The github repository is a mirror of [this gitlab repository](https://gitlab.com/obsidianical/microbin).
|
|
||||||
|
|
||||||
This is a fork of [MicroBin](https://github.com/szabodanika/microbin).
|
|
||||||
|
|
||||||
## Features
|
|
||||||
|
|
||||||
- Animal names (by default) or custom namefiles instead of just hashes (though hashes are an option too!)
|
|
||||||
- File and image uploads
|
|
||||||
- raw text serving
|
|
||||||
- URL shortening
|
|
||||||
- QR codes
|
|
||||||
- Listing and removing pastas (though currently everyone can do that)
|
|
||||||
- Expiration times
|
|
||||||
- Editable pastas
|
|
||||||
- Syntax highlighting
|
|
||||||
- Styling via [water.css](https://github.com/kognise/water.css)
|
|
||||||
- Customizable endpoints
|
|
||||||
|
|
||||||
## Installation guide
|
|
||||||
|
|
||||||
Karton is available on [Docker hub](https://hub.docker.com/r/schrottkatze/karton), [crates.io](https://crates.io/crates/karton) and using the nix flake.
|
|
||||||
|
|
||||||
The only "officially supported" (I will actively debug and search for the problem) method is the last one using nix flakes.
|
|
||||||
|
|
||||||
### Installation via the nix flake
|
|
||||||
|
|
||||||
Add the repository to your inputs.
|
|
||||||
|
|
||||||
```nix
|
|
||||||
karton.url = "git+https://gitlab.com/obsidianical/microbin.git";
|
|
||||||
```
|
|
||||||
|
|
||||||
```nix
|
|
||||||
# microbin.nix
|
|
||||||
{ inputs, config, pkgs, ... }:
|
|
||||||
{
|
|
||||||
environment.systemPackages = [ inputs.karton.defaultPackage."x86_64-linux" ];
|
|
||||||
systemd.services.karton = {
|
|
||||||
after = [ "network.target" ];
|
|
||||||
wantedBy = [ "multi-user.target" ];
|
|
||||||
environment = {
|
|
||||||
# set environment variables to configure karton
|
|
||||||
KARTON_HASH_IDS = "";
|
|
||||||
KARTON_EDITABLE = "";
|
|
||||||
KARTON_PRIVATE = "";
|
|
||||||
KARTON_HIGHLIGHTSYNTAX = "";
|
|
||||||
# adjust this to your domain
|
|
||||||
KARTON_PUBLIC_PATH = "https://example.org";
|
|
||||||
KARTON_QR = "";
|
|
||||||
# configure endpoints to be shorter
|
|
||||||
KARTON_URL_EP = "u";
|
|
||||||
KARTON_RAW_EP = "r";
|
|
||||||
KARTON_PASTA_EP = "p";
|
|
||||||
};
|
|
||||||
script = "${inputs.karton.defaultPackage."x86_64-linux"}/bin/karton";
|
|
||||||
# register a simple systemd service
|
|
||||||
serviceConfig = {
|
|
||||||
Type = "simple";
|
|
||||||
RootDirectory="/";
|
|
||||||
WorkingDirectory = "/karton";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Contact
|
|
||||||
|
|
||||||
This fork of MicroBin was created by [Schrottkatze](https://schrottkatze.de).
|
|
||||||
|
|
||||||
Join [the matrix room](https://matrix.to/#/#s10e-microbin:matrix.org) to chat!
|
|
||||||
|
|
||||||
Contact me via e-mail at [contact@schrottkatze.de](mailto:contact@schrottkatze.de).
|
|
19
SECURITY.md
Normal file
19
SECURITY.md
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# Security Policy
|
||||||
|
|
||||||
|
## Supported Versions
|
||||||
|
|
||||||
|
Use this section to tell people about which versions of your project are
|
||||||
|
currently being supported with security updates.
|
||||||
|
|
||||||
|
| Version | Supported |
|
||||||
|
| ------- | ------------------ |
|
||||||
|
| 1.1.* | :white_check_mark: |
|
||||||
|
| < 1.1.0 | :x: |
|
||||||
|
|
||||||
|
## Reporting a Vulnerability
|
||||||
|
|
||||||
|
Security vulnerabilities can be reported directly to
|
||||||
|
the developer/maintainer at d@szab.eu.
|
||||||
|
|
||||||
|
Sensitive information may be GPG encrypted with my public key available at
|
||||||
|
https://szab.eu/assets/files/daniel-szabo-pub.asc.
|
54
TODO.md
54
TODO.md
|
@ -1,54 +0,0 @@
|
||||||
# TODO lists
|
|
||||||
|
|
||||||
these are just rough guides tho
|
|
||||||
|
|
||||||
## v2.1
|
|
||||||
|
|
||||||
- [ ] customizable endpoints
|
|
||||||
- [ ] create
|
|
||||||
- [ ] edit
|
|
||||||
- [ ] info
|
|
||||||
- [ ] get pastas
|
|
||||||
- [ ] remove
|
|
||||||
- [ ] improve remove endpoint
|
|
||||||
- [ ] disable it
|
|
||||||
- [ ] client library
|
|
||||||
- [ ] request .well-known data
|
|
||||||
- [ ] support most endpoints
|
|
||||||
- [ ] karton cli
|
|
||||||
|
|
||||||
## v3.0
|
|
||||||
|
|
||||||
- [ ] internal rewrite & docs
|
|
||||||
- [ ] design new frontend
|
|
||||||
- [ ] switch to yew
|
|
||||||
- [ ] using client lib
|
|
||||||
- [ ] theme and general config files
|
|
||||||
- [ ] unified theme format
|
|
||||||
- [ ] no env configs anymore if possible
|
|
||||||
- [ ] proper dbs
|
|
||||||
- [ ] sqlite
|
|
||||||
- [ ] postgres
|
|
||||||
- [ ] apis/endpoints
|
|
||||||
- [ ] IDs, name IDs AND user/pastaname
|
|
||||||
- [ ] root (and admin) user for root level pastas
|
|
||||||
- [ ] status/instance health admin dashboard and ap
|
|
||||||
- [ ] storage
|
|
||||||
- [ ] db status
|
|
||||||
- [ ] how up to date
|
|
||||||
- [ ] stats (users etc)
|
|
||||||
- [ ] errors
|
|
||||||
- [ ] loading speeds, performance monitor?
|
|
||||||
- [ ] memory use
|
|
||||||
- [ ] auth
|
|
||||||
- [ ] general auth
|
|
||||||
- [ ] oidc
|
|
||||||
- [ ] permssion system & api keys
|
|
||||||
- [ ] only allow some other users to open pasta
|
|
||||||
- [ ] access control and editing
|
|
||||||
- [ ] password protected pastas too
|
|
||||||
- [ ] features for pastas
|
|
||||||
- [ ] pw protection
|
|
||||||
- [ ] better editor
|
|
||||||
- [ ] markdown pastas
|
|
||||||
- [ ] optional, opt-in commenting
|
|
|
@ -1,7 +0,0 @@
|
||||||
(import (
|
|
||||||
fetchTarball {
|
|
||||||
url = "https://github.com/edolstra/flake-compat/archive/99f1c2157fba4bfe6211a321fd0ee43199025dbf.tar.gz";
|
|
||||||
sha256 = "0x2jn3vrawwv9xp15674wjz9pixwjyj3j771izayl962zziivbx2"; }
|
|
||||||
) {
|
|
||||||
src = ./.;
|
|
||||||
}).defaultNix
|
|
77
flake.lock
77
flake.lock
|
@ -1,77 +0,0 @@
|
||||||
{
|
|
||||||
"nodes": {
|
|
||||||
"naersk": {
|
|
||||||
"inputs": {
|
|
||||||
"nixpkgs": "nixpkgs"
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1671096816,
|
|
||||||
"narHash": "sha256-ezQCsNgmpUHdZANDCILm3RvtO1xH8uujk/+EqNvzIOg=",
|
|
||||||
"owner": "nix-community",
|
|
||||||
"repo": "naersk",
|
|
||||||
"rev": "d998160d6a076cfe8f9741e56aeec7e267e3e114",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "nix-community",
|
|
||||||
"ref": "master",
|
|
||||||
"repo": "naersk",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nixpkgs": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1677852945,
|
|
||||||
"narHash": "sha256-liiVJjkBTuBTAkRW3hrI8MbPD2ImYzwUpa7kvteiKhM=",
|
|
||||||
"owner": "NixOS",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"rev": "f5ffd5787786dde3a8bf648c7a1b5f78c4e01abb",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"id": "nixpkgs",
|
|
||||||
"type": "indirect"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nixpkgs_2": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1677852945,
|
|
||||||
"narHash": "sha256-liiVJjkBTuBTAkRW3hrI8MbPD2ImYzwUpa7kvteiKhM=",
|
|
||||||
"owner": "NixOS",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"rev": "f5ffd5787786dde3a8bf648c7a1b5f78c4e01abb",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "NixOS",
|
|
||||||
"ref": "nixpkgs-unstable",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"root": {
|
|
||||||
"inputs": {
|
|
||||||
"naersk": "naersk",
|
|
||||||
"nixpkgs": "nixpkgs_2",
|
|
||||||
"utils": "utils"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"utils": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1676283394,
|
|
||||||
"narHash": "sha256-XX2f9c3iySLCw54rJ/CZs+ZK6IQy7GXNY4nSOyu2QG4=",
|
|
||||||
"owner": "numtide",
|
|
||||||
"repo": "flake-utils",
|
|
||||||
"rev": "3db36a8b464d0c4532ba1c7dda728f4576d6d073",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "numtide",
|
|
||||||
"repo": "flake-utils",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"root": "root",
|
|
||||||
"version": 7
|
|
||||||
}
|
|
21
flake.nix
21
flake.nix
|
@ -1,21 +0,0 @@
|
||||||
{
|
|
||||||
inputs = {
|
|
||||||
naersk.url = "github:nix-community/naersk/master";
|
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
||||||
utils.url = "github:numtide/flake-utils";
|
|
||||||
};
|
|
||||||
|
|
||||||
outputs = { self, nixpkgs, utils, naersk }:
|
|
||||||
utils.lib.eachDefaultSystem (system:
|
|
||||||
let
|
|
||||||
pkgs = import nixpkgs { inherit system; };
|
|
||||||
naersk-lib = pkgs.callPackage naersk { };
|
|
||||||
in
|
|
||||||
{
|
|
||||||
defaultPackage = naersk-lib.buildPackage ./.;
|
|
||||||
devShell = with pkgs; mkShell {
|
|
||||||
buildInputs = [ cargo rustc rustfmt pre-commit rustPackages.clippy cargo-watch podman ];
|
|
||||||
RUST_SRC_PATH = rustPlatform.rustLibSrc;
|
|
||||||
};
|
|
||||||
});
|
|
||||||
}
|
|
BIN
git/index.png
Normal file
BIN
git/index.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 791 KiB |
9
render.yaml
Normal file
9
render.yaml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
services:
|
||||||
|
- type: web
|
||||||
|
name: microbin
|
||||||
|
plan: free
|
||||||
|
numInstances: 1
|
||||||
|
env: rust
|
||||||
|
repo: https://github.com/szabodanika/microbin.git
|
||||||
|
buildCommand: cargo build --release
|
||||||
|
startCommand: ./target/release/microbin --editable --highlightsyntax
|
|
@ -1,7 +0,0 @@
|
||||||
(import (
|
|
||||||
fetchTarball {
|
|
||||||
url = "https://github.com/edolstra/flake-compat/archive/99f1c2157fba4bfe6211a321fd0ee43199025dbf.tar.gz";
|
|
||||||
sha256 = "0x2jn3vrawwv9xp15674wjz9pixwjyj3j771izayl962zziivbx2"; }
|
|
||||||
) {
|
|
||||||
src = ./.;
|
|
||||||
}).shellNix
|
|
146
src/args.rs
146
src/args.rs
|
@ -1,10 +1,6 @@
|
||||||
|
use std::net::IpAddr;
|
||||||
use clap::Parser;
|
use clap::Parser;
|
||||||
use lazy_static::lazy_static;
|
use lazy_static::lazy_static;
|
||||||
use std::convert::Infallible;
|
|
||||||
use std::fmt;
|
|
||||||
use std::net::IpAddr;
|
|
||||||
use std::path::PathBuf;
|
|
||||||
use std::str::FromStr;
|
|
||||||
|
|
||||||
lazy_static! {
|
lazy_static! {
|
||||||
pub static ref ARGS: Args = Args::parse();
|
pub static ref ARGS: Args = Args::parse();
|
||||||
|
@ -13,154 +9,54 @@ lazy_static! {
|
||||||
#[derive(Parser, Debug, Clone)]
|
#[derive(Parser, Debug, Clone)]
|
||||||
#[clap(author, version, about, long_about = None)]
|
#[clap(author, version, about, long_about = None)]
|
||||||
pub struct Args {
|
pub struct Args {
|
||||||
/// The username for basic HTTP auth.
|
#[clap(long, env="MICROBIN_AUTH_USERNAME")]
|
||||||
/// If unset, HTTP authentication stays disabled.
|
|
||||||
///
|
|
||||||
/// WARNING: people opening pastas will have to authenticate too.
|
|
||||||
#[clap(long, env = "KARTON_AUTH_USERNAME")]
|
|
||||||
pub auth_username: Option<String>,
|
pub auth_username: Option<String>,
|
||||||
|
|
||||||
/// Set a password for HTTP authentication.
|
#[clap(long, env="MICROBIN_AUTH_PASSWORD")]
|
||||||
/// If unset, HTTP authentication will not require a password.
|
|
||||||
/// If `auth_username` is unset, this option will not have any effect.
|
|
||||||
#[clap(long, env = "KARTON_AUTH_PASSWORD")]
|
|
||||||
pub auth_password: Option<String>,
|
pub auth_password: Option<String>,
|
||||||
|
|
||||||
/// Enable the option to make pastas editable.
|
#[clap(long, env="MICROBIN_EDITABLE")]
|
||||||
#[clap(long, env = "KARTON_EDITABLE")]
|
|
||||||
pub editable: bool,
|
pub editable: bool,
|
||||||
|
|
||||||
/// The text displayed in the browser navigation bar.
|
#[clap(long, env="MICROBIN_FOOTER_TEXT")]
|
||||||
#[clap(long, env = "KARTON_TITLE", default_value = " Karton")]
|
|
||||||
pub title: String,
|
|
||||||
|
|
||||||
/// The web interfaces' footer text.
|
|
||||||
#[clap(long, env = "KARTON_FOOTER_TEXT")]
|
|
||||||
pub footer_text: Option<String>,
|
pub footer_text: Option<String>,
|
||||||
|
|
||||||
/// Hide the footer of the web interface.
|
#[clap(long, env="MICROBIN_HIDE_FOOTER")]
|
||||||
#[clap(long, env = "KARTON_HIDE_FOOTER")]
|
|
||||||
pub hide_footer: bool,
|
pub hide_footer: bool,
|
||||||
|
|
||||||
/// Hide the header of the web interface.
|
#[clap(long, env="MICROBIN_HIDE_HEADER")]
|
||||||
#[clap(long, env = "KARTON_HIDE_HEADER")]
|
|
||||||
pub hide_header: bool,
|
pub hide_header: bool,
|
||||||
|
|
||||||
/// Hide the logo in the header.
|
#[clap(long, env="MICROBIN_HIDE_LOGO")]
|
||||||
#[clap(long, env = "KARTON_HIDE_LOGO")]
|
|
||||||
pub hide_logo: bool,
|
pub hide_logo: bool,
|
||||||
|
|
||||||
/// Disable the listing page.
|
#[clap(long, env="MICROBIN_NO_LISTING")]
|
||||||
#[clap(long, env = "KARTON_NO_LISTING")]
|
|
||||||
pub no_listing: bool,
|
pub no_listing: bool,
|
||||||
|
|
||||||
/// Enable syntax highlighting in pastas.
|
#[clap(long, env="MICROBIN_HIGHLIGHTSYNTAX")]
|
||||||
#[clap(long, env = "KARTON_HIGHLIGHTSYNTAX")]
|
|
||||||
pub highlightsyntax: bool,
|
pub highlightsyntax: bool,
|
||||||
|
|
||||||
/// The port to which to bind the server.
|
#[clap(short, long, env="MICROBIN_PORT", default_value_t = 8080)]
|
||||||
#[clap(short, long, env = "KARTON_PORT", default_value_t = 8080)]
|
|
||||||
pub port: u16,
|
pub port: u16,
|
||||||
|
|
||||||
/// The IP adress to bind the server to.
|
#[clap(short, long, env="MICROBIN_BIND", default_value_t = IpAddr::from([0, 0, 0, 0]))]
|
||||||
#[clap(short, long, env="KARTON_BIND", default_value_t = IpAddr::from([0, 0, 0, 0]))]
|
|
||||||
pub bind: IpAddr,
|
pub bind: IpAddr,
|
||||||
|
|
||||||
/// Enable the option to create private pastas.
|
#[clap(long, env="MICROBIN_PRIVATE")]
|
||||||
#[clap(long, env = "KARTON_PRIVATE")]
|
|
||||||
pub private: bool,
|
pub private: bool,
|
||||||
|
|
||||||
/// Disables most css, apart form some inline styles.
|
#[clap(long, env="MICROBIN_PURE_HTML")]
|
||||||
#[clap(long, env = "KARTON_PURE_HTML")]
|
|
||||||
pub pure_html: bool,
|
pub pure_html: bool,
|
||||||
|
|
||||||
/// The servers public path, making it possible to run Karton behind a reverse proxy subpath.
|
#[clap(long, env="MICROBIN_READONLY")]
|
||||||
#[clap(long, env="KARTON_PUBLIC_PATH", default_value_t = PublicUrl(String::from("")))]
|
|
||||||
pub public_path: PublicUrl,
|
|
||||||
|
|
||||||
/// Enable creation of QR codes of pastas. Requires `public_path` to be set.
|
|
||||||
#[clap(long, env = "KARTON_QR")]
|
|
||||||
pub qr: bool,
|
|
||||||
|
|
||||||
|
|
||||||
/// Disable adding/removing/editing pastas.
|
|
||||||
#[clap(long, env = "KARTON_READONLY")]
|
|
||||||
pub readonly: bool,
|
pub readonly: bool,
|
||||||
|
|
||||||
/// The amount of worker threads that the server is allowed to have.
|
#[clap(long, env="MICROBIN_TITLE")]
|
||||||
#[clap(short, long, env = "KARTON_THREADS", default_value_t = 1)]
|
pub title: Option<String>,
|
||||||
|
|
||||||
|
#[clap(short, long, env="MICROBIN_THREADS", default_value_t = 1)]
|
||||||
pub threads: u8,
|
pub threads: u8,
|
||||||
|
|
||||||
/// Sets a time value for the garbage collector. Pastas that aren't accessed for the given
|
#[clap(long, env="MICROBIN_WIDE")]
|
||||||
/// amount of days will be deleted. Set to 0 to disable garbage collection.
|
|
||||||
#[clap(short, long, env = "KARTON_GC_DAYS", default_value_t = 90)]
|
|
||||||
pub gc_days: u16,
|
|
||||||
|
|
||||||
/// Enable the option to delete after a given amount of reads.
|
|
||||||
#[clap(long, env = "KARTON_ENABLE_BURN_AFTER")]
|
|
||||||
pub enable_burn_after: bool,
|
|
||||||
|
|
||||||
/// The default amount of reads for the self-delete mechanism.
|
|
||||||
#[clap(short, long, env = "KARTON_DEFAULT_BURN_AFTER", default_value_t = 0)]
|
|
||||||
pub default_burn_after: u16,
|
|
||||||
|
|
||||||
/// Changes the UIs maximum width from 720 pixels to 1080.
|
|
||||||
#[clap(long, env = "KARTON_WIDE")]
|
|
||||||
pub wide: bool,
|
pub wide: bool,
|
||||||
|
}
|
||||||
/// Disable "Never" expiry setting.
|
|
||||||
#[clap(long, env = "KARTON_NO_ETERNAL_PASTA")]
|
|
||||||
pub no_eternal_pasta: bool,
|
|
||||||
|
|
||||||
/// Set the default expiry time value.
|
|
||||||
#[clap(long, env = "KARTON_DEFAULT_EXPIRY", default_value = "24hour")]
|
|
||||||
pub default_expiry: String,
|
|
||||||
|
|
||||||
/// Disable file uploading.
|
|
||||||
#[clap(short, long, env = "KARTON_NO_FILE_UPLOAD")]
|
|
||||||
pub no_file_upload: bool,
|
|
||||||
|
|
||||||
// TODO: replace with simple path.
|
|
||||||
/// Replace built-in CSS file with a CSS file provided by the linked URL.
|
|
||||||
#[clap(long, env = "KARTON_CUSTOM_CSS")]
|
|
||||||
pub custom_css: Option<String>,
|
|
||||||
|
|
||||||
/// Replace built-in animal names file with custom names file for pasta links.
|
|
||||||
/// The file must be newline seperated.
|
|
||||||
#[clap(long, env = "KARTON_CUSTOM_NAMES")]
|
|
||||||
pub custom_names: Option<PathBuf>,
|
|
||||||
|
|
||||||
/// Enable the use of Hash IDs for shorter URLs instead of animal names.
|
|
||||||
#[clap(long, env = "KARTON_HASH_IDS")]
|
|
||||||
pub hash_ids: bool,
|
|
||||||
|
|
||||||
/// Endpoint for /url/
|
|
||||||
#[clap(long, env = "KARTON_URL_EP", default_value = "url" )]
|
|
||||||
pub url_endpoint: String,
|
|
||||||
|
|
||||||
/// Endpoint for /pasta/
|
|
||||||
#[clap(long, env = "KARTON_PASTA_EP", default_value = "pasta" )]
|
|
||||||
pub pasta_endpoint: String,
|
|
||||||
|
|
||||||
/// Endpoint for /raw/
|
|
||||||
#[clap(long, env = "KARTON_RAW_EP", default_value = "raw" )]
|
|
||||||
pub raw_endpoint: String,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
|
||||||
pub struct PublicUrl(pub String);
|
|
||||||
|
|
||||||
impl fmt::Display for PublicUrl {
|
|
||||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
||||||
write!(f, "{}", self.0)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl FromStr for PublicUrl {
|
|
||||||
type Err = Infallible;
|
|
||||||
|
|
||||||
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
||||||
let uri = s.strip_suffix('/').unwrap_or(s).to_owned();
|
|
||||||
Ok(PublicUrl(uri))
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,12 +1,9 @@
|
||||||
use crate::dbio::save_to_file;
|
use crate::dbio::save_to_file;
|
||||||
use crate::pasta::PastaFile;
|
use crate::pasta::PastaFile;
|
||||||
use crate::util::hashids::to_hashids;
|
use crate::util::animalnumbers::to_animal_names;
|
||||||
use crate::util::misc::is_valid_url;
|
use crate::util::misc::is_valid_url;
|
||||||
use crate::util::pasta_id_converter::CONVERTER;
|
|
||||||
use crate::{AppState, Pasta, ARGS};
|
use crate::{AppState, Pasta, ARGS};
|
||||||
use actix_multipart::Multipart;
|
use actix_multipart::Multipart;
|
||||||
use actix_web::http::StatusCode;
|
|
||||||
use actix_web::web::{BytesMut, BufMut};
|
|
||||||
use actix_web::{get, web, Error, HttpResponse, Responder};
|
use actix_web::{get, web, Error, HttpResponse, Responder};
|
||||||
use askama::Template;
|
use askama::Template;
|
||||||
use bytesize::ByteSize;
|
use bytesize::ByteSize;
|
||||||
|
@ -16,8 +13,6 @@ use rand::Rng;
|
||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
use std::time::{SystemTime, UNIX_EPOCH};
|
use std::time::{SystemTime, UNIX_EPOCH};
|
||||||
|
|
||||||
use super::errors::ErrorTemplate;
|
|
||||||
|
|
||||||
#[derive(Template)]
|
#[derive(Template)]
|
||||||
#[template(path = "index.html")]
|
#[template(path = "index.html")]
|
||||||
struct IndexTemplate<'a> {
|
struct IndexTemplate<'a> {
|
||||||
|
@ -31,18 +26,17 @@ pub async fn index() -> impl Responder {
|
||||||
.body(IndexTemplate { args: &ARGS }.render().unwrap())
|
.body(IndexTemplate { args: &ARGS }.render().unwrap())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Pasta creation endpoint.
|
|
||||||
pub async fn create(
|
pub async fn create(
|
||||||
data: web::Data<AppState>,
|
data: web::Data<AppState>,
|
||||||
mut payload: Multipart,
|
mut payload: Multipart,
|
||||||
) -> Result<HttpResponse, Error> {
|
) -> Result<HttpResponse, Error> {
|
||||||
if ARGS.readonly {
|
if ARGS.readonly {
|
||||||
return Ok(HttpResponse::Found()
|
return Ok(HttpResponse::Found()
|
||||||
.append_header(("Location", format!("{}/", ARGS.public_path)))
|
.append_header(("Location", "/"))
|
||||||
.finish());
|
.finish());
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut pastas = data.pastas.lock().await;
|
let mut pastas = data.pastas.lock().unwrap();
|
||||||
|
|
||||||
let timenow: i64 = match SystemTime::now().duration_since(UNIX_EPOCH) {
|
let timenow: i64 = match SystemTime::now().duration_since(UNIX_EPOCH) {
|
||||||
Ok(n) => n.as_secs(),
|
Ok(n) => n.as_secs(),
|
||||||
|
@ -60,9 +54,6 @@ pub async fn create(
|
||||||
private: false,
|
private: false,
|
||||||
editable: false,
|
editable: false,
|
||||||
created: timenow,
|
created: timenow,
|
||||||
read_count: 0,
|
|
||||||
burn_after_reads: 0,
|
|
||||||
last_read: timenow,
|
|
||||||
pasta_type: String::from(""),
|
pasta_type: String::from(""),
|
||||||
expiration: 0,
|
expiration: 0,
|
||||||
};
|
};
|
||||||
|
@ -70,87 +61,51 @@ pub async fn create(
|
||||||
while let Some(mut field) = payload.try_next().await? {
|
while let Some(mut field) = payload.try_next().await? {
|
||||||
match field.name() {
|
match field.name() {
|
||||||
"editable" => {
|
"editable" => {
|
||||||
|
// while let Some(_chunk) = field.try_next().await? {}
|
||||||
new_pasta.editable = true;
|
new_pasta.editable = true;
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
"private" => {
|
"private" => {
|
||||||
|
// while let Some(_chunk) = field.try_next().await? {}
|
||||||
new_pasta.private = true;
|
new_pasta.private = true;
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
"expiration" => {
|
"expiration" => {
|
||||||
while let Some(chunk) = field.try_next().await? {
|
while let Some(chunk) = field.try_next().await? {
|
||||||
new_pasta.expiration = match std::str::from_utf8(&chunk).unwrap() {
|
new_pasta.expiration = match std::str::from_utf8(&chunk).unwrap() {
|
||||||
// TODO: customizable times
|
|
||||||
"1min" => timenow + 60,
|
"1min" => timenow + 60,
|
||||||
"10min" => timenow + 60 * 10,
|
"10min" => timenow + 60 * 10,
|
||||||
"1hour" => timenow + 60 * 60,
|
"1hour" => timenow + 60 * 60,
|
||||||
"24hour" => timenow + 60 * 60 * 24,
|
"24hour" => timenow + 60 * 60 * 24,
|
||||||
"3days" => timenow + 60 * 60 * 24 * 3,
|
|
||||||
"1week" => timenow + 60 * 60 * 24 * 7,
|
"1week" => timenow + 60 * 60 * 24 * 7,
|
||||||
"never" => {
|
"never" => 0,
|
||||||
if ARGS.no_eternal_pasta {
|
|
||||||
timenow + 60 * 60 * 24 * 7
|
|
||||||
} else {
|
|
||||||
0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
_ => {
|
_ => {
|
||||||
log::error!("{}", "Unexpected expiration time!");
|
log::error!("{}", "Unexpected expiration time!");
|
||||||
timenow + 60 * 60 * 24 * 7
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
"burn_after" => {
|
|
||||||
while let Some(chunk) = field.try_next().await? {
|
|
||||||
new_pasta.burn_after_reads = match std::str::from_utf8(&chunk).unwrap() {
|
|
||||||
// TODO: also make customizable
|
|
||||||
// maybe options in config files, with defaults
|
|
||||||
// give an extra read because the user will be redirected to the pasta page automatically
|
|
||||||
"1" => 2,
|
|
||||||
"10" => 10,
|
|
||||||
"100" => 100,
|
|
||||||
"1000" => 1000,
|
|
||||||
"10000" => 10000,
|
|
||||||
"0" => 0,
|
|
||||||
_ => {
|
|
||||||
log::error!("{}", "Unexpected burn after value!");
|
|
||||||
0
|
0
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
"content" => {
|
"content" => {
|
||||||
let mut content = BytesMut::new();
|
|
||||||
while let Some(chunk) = field.try_next().await? {
|
while let Some(chunk) = field.try_next().await? {
|
||||||
content.put(chunk);
|
new_pasta.content = std::str::from_utf8(&chunk).unwrap().to_string();
|
||||||
}
|
|
||||||
if !content.is_empty() {
|
|
||||||
new_pasta.content = match String::from_utf8(content.to_vec()) {
|
|
||||||
Ok(v) => v,
|
|
||||||
Err(_) => return Ok(HttpResponse::BadRequest()
|
|
||||||
.content_type("text/html")
|
|
||||||
.body(ErrorTemplate {
|
|
||||||
status_code: StatusCode::BAD_REQUEST,
|
|
||||||
args: &ARGS
|
|
||||||
}.render().unwrap())),
|
|
||||||
};
|
|
||||||
|
|
||||||
new_pasta.pasta_type = if is_valid_url(new_pasta.content.as_str()) {
|
new_pasta.pasta_type = if is_valid_url(new_pasta.content.as_str()) {
|
||||||
String::from("url")
|
String::from("url")
|
||||||
} else {
|
} else {
|
||||||
String::from("text")
|
String::from("text")
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
"syntax-highlight" => {
|
"syntax-highlight" => {
|
||||||
while let Some(chunk) = field.try_next().await? {
|
while let Some(chunk) = field.try_next().await? {
|
||||||
new_pasta.extension = std::str::from_utf8(&chunk).unwrap().to_string();
|
new_pasta.extension = std::str::from_utf8(&chunk).unwrap().to_string();
|
||||||
}
|
}
|
||||||
|
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 {
|
||||||
|
@ -159,7 +114,7 @@ pub async fn create(
|
||||||
None => continue,
|
None => continue,
|
||||||
};
|
};
|
||||||
|
|
||||||
let mut file = match PastaFile::from_unsanitized(path) {
|
let mut file = match PastaFile::from_unsanitized(&path) {
|
||||||
Ok(f) => f,
|
Ok(f) => f,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
warn!("Unsafe file name: {e:?}");
|
warn!("Unsafe file name: {e:?}");
|
||||||
|
@ -167,11 +122,8 @@ pub async fn create(
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
std::fs::create_dir_all(format!(
|
std::fs::create_dir_all(format!("./pasta_data/public/{}", &new_pasta.id_as_animals()))
|
||||||
"./pasta_data/public/{}",
|
.unwrap();
|
||||||
&new_pasta.id_as_animals()
|
|
||||||
))
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
let filepath = format!(
|
let filepath = format!(
|
||||||
"./pasta_data/public/{}/{}",
|
"./pasta_data/public/{}/{}",
|
||||||
|
@ -191,9 +143,7 @@ pub async fn create(
|
||||||
new_pasta.file = Some(file);
|
new_pasta.file = Some(file);
|
||||||
new_pasta.pasta_type = String::from("text");
|
new_pasta.pasta_type = String::from("text");
|
||||||
}
|
}
|
||||||
field => {
|
_ => {}
|
||||||
log::error!("Unexpected multipart field: {}", field);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -203,12 +153,7 @@ pub async fn create(
|
||||||
|
|
||||||
save_to_file(&pastas);
|
save_to_file(&pastas);
|
||||||
|
|
||||||
let slug = if ARGS.hash_ids {
|
|
||||||
to_hashids(id)
|
|
||||||
} else {
|
|
||||||
CONVERTER.to_names(id)
|
|
||||||
};
|
|
||||||
Ok(HttpResponse::Found()
|
Ok(HttpResponse::Found()
|
||||||
.append_header(("Location", format!("{}/{}/{}", ARGS.public_path, ARGS.pasta_endpoint, slug)))
|
.append_header(("Location", format!("/pasta/{}", to_animal_names(id))))
|
||||||
.finish())
|
.finish())
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,10 @@
|
||||||
use crate::args::Args;
|
use crate::args::Args;
|
||||||
use crate::dbio::save_to_file;
|
use crate::dbio::save_to_file;
|
||||||
use crate::endpoints::errors::ErrorTemplate;
|
use crate::endpoints::errors::ErrorTemplate;
|
||||||
use crate::util::hashids::to_u64 as hashid_to_u64;
|
use crate::util::animalnumbers::to_u64;
|
||||||
use crate::util::misc::remove_expired;
|
use crate::util::misc::remove_expired;
|
||||||
use crate::util::pasta_id_converter::CONVERTER;
|
|
||||||
use crate::{AppState, Pasta, ARGS};
|
use crate::{AppState, Pasta, ARGS};
|
||||||
use actix_multipart::Multipart;
|
use actix_multipart::Multipart;
|
||||||
use actix_web::http::StatusCode;
|
|
||||||
use actix_web::{get, post, web, Error, HttpResponse};
|
use actix_web::{get, post, web, Error, HttpResponse};
|
||||||
use askama::Template;
|
use askama::Template;
|
||||||
use futures::TryStreamExt;
|
use futures::TryStreamExt;
|
||||||
|
@ -20,13 +18,9 @@ struct EditTemplate<'a> {
|
||||||
|
|
||||||
#[get("/edit/{id}")]
|
#[get("/edit/{id}")]
|
||||||
pub async fn get_edit(data: web::Data<AppState>, id: web::Path<String>) -> HttpResponse {
|
pub async fn get_edit(data: web::Data<AppState>, id: web::Path<String>) -> HttpResponse {
|
||||||
let mut pastas = data.pastas.lock().await;
|
let mut pastas = data.pastas.lock().unwrap();
|
||||||
|
|
||||||
let id = if ARGS.hash_ids {
|
let id = to_u64(&*id.into_inner()).unwrap_or(0);
|
||||||
hashid_to_u64(&id).unwrap_or(0)
|
|
||||||
} else {
|
|
||||||
CONVERTER.to_u64(&id.into_inner()).unwrap_or(0)
|
|
||||||
};
|
|
||||||
|
|
||||||
remove_expired(&mut pastas);
|
remove_expired(&mut pastas);
|
||||||
|
|
||||||
|
@ -34,21 +28,23 @@ pub async fn get_edit(data: web::Data<AppState>, id: web::Path<String>) -> HttpR
|
||||||
if pasta.id == id {
|
if pasta.id == id {
|
||||||
if !pasta.editable {
|
if !pasta.editable {
|
||||||
return HttpResponse::Found()
|
return HttpResponse::Found()
|
||||||
.append_header(("Location", format!("{}/", ARGS.public_path)))
|
.append_header(("Location", "/"))
|
||||||
.finish();
|
.finish();
|
||||||
}
|
}
|
||||||
return HttpResponse::Ok()
|
return HttpResponse::Ok().content_type("text/html").body(
|
||||||
.content_type("text/html")
|
EditTemplate {
|
||||||
.body(EditTemplate { pasta, args: &ARGS }.render().unwrap());
|
pasta: &pasta,
|
||||||
|
args: &ARGS,
|
||||||
|
}
|
||||||
|
.render()
|
||||||
|
.unwrap(),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
HttpResponse::NotFound()
|
HttpResponse::Ok()
|
||||||
.content_type("text/html")
|
.content_type("text/html")
|
||||||
.body(ErrorTemplate {
|
.body(ErrorTemplate { args: &ARGS }.render().unwrap())
|
||||||
status_code: StatusCode::NOT_FOUND,
|
|
||||||
args: &ARGS
|
|
||||||
}.render().unwrap())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[post("/edit/{id}")]
|
#[post("/edit/{id}")]
|
||||||
|
@ -59,41 +55,37 @@ pub async fn post_edit(
|
||||||
) -> Result<HttpResponse, Error> {
|
) -> Result<HttpResponse, Error> {
|
||||||
if ARGS.readonly {
|
if ARGS.readonly {
|
||||||
return Ok(HttpResponse::Found()
|
return Ok(HttpResponse::Found()
|
||||||
.append_header(("Location", format!("{}/", ARGS.public_path)))
|
.append_header(("Location", "/"))
|
||||||
.finish());
|
.finish());
|
||||||
}
|
}
|
||||||
|
|
||||||
let id = if ARGS.hash_ids {
|
let id = to_u64(&*id.into_inner()).unwrap_or(0);
|
||||||
hashid_to_u64(&id).unwrap_or(0)
|
|
||||||
} else {
|
|
||||||
CONVERTER.to_u64(&id.into_inner()).unwrap_or(0)
|
|
||||||
};
|
|
||||||
|
|
||||||
let mut pastas = data.pastas.lock().await;
|
let mut pastas = data.pastas.lock().unwrap();
|
||||||
|
|
||||||
remove_expired(&mut pastas);
|
remove_expired(&mut pastas);
|
||||||
|
|
||||||
let mut new_content = String::from("");
|
let mut new_content = String::from("");
|
||||||
|
|
||||||
while let Some(mut field) = payload.try_next().await? {
|
while let Some(mut field) = payload.try_next().await? {
|
||||||
if field.name() == "content" {
|
match field.name() {
|
||||||
while let Some(chunk) = field.try_next().await? {
|
"content" => {
|
||||||
new_content = std::str::from_utf8(&chunk).unwrap().to_string();
|
while let Some(chunk) = field.try_next().await? {
|
||||||
|
new_content = std::str::from_utf8(&chunk).unwrap().to_string();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
_ => {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i, pasta) in pastas.iter().enumerate() {
|
for (i, pasta) in pastas.iter().enumerate() {
|
||||||
if pasta.id == id {
|
if pasta.id == id {
|
||||||
if pasta.editable {
|
if pasta.editable {
|
||||||
pastas[i].content.replace_range(.., &new_content);
|
pastas[i].content.replace_range(.., &*new_content);
|
||||||
save_to_file(&pastas);
|
save_to_file(&pastas);
|
||||||
|
|
||||||
return Ok(HttpResponse::Found()
|
return Ok(HttpResponse::Found()
|
||||||
.append_header((
|
.append_header(("Location", format!("/pasta/{}", pastas[i].id_as_animals())))
|
||||||
"Location",
|
|
||||||
format!("{}/pasta/{}", ARGS.public_path, pastas[i].id_as_animals()),
|
|
||||||
))
|
|
||||||
.finish());
|
.finish());
|
||||||
} else {
|
} else {
|
||||||
break;
|
break;
|
||||||
|
@ -101,10 +93,7 @@ pub async fn post_edit(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(HttpResponse::NotFound()
|
Ok(HttpResponse::Ok()
|
||||||
.content_type("text/html")
|
.content_type("text/html")
|
||||||
.body(ErrorTemplate {
|
.body(ErrorTemplate { args: &ARGS }.render().unwrap()))
|
||||||
status_code: StatusCode::NOT_FOUND,
|
|
||||||
args: &ARGS
|
|
||||||
}.render().unwrap()))
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use actix_web::{Error, HttpResponse, http::StatusCode};
|
use actix_web::{Error, HttpResponse};
|
||||||
use askama::Template;
|
use askama::Template;
|
||||||
|
|
||||||
use crate::args::{Args, ARGS};
|
use crate::args::{Args, ARGS};
|
||||||
|
@ -6,15 +6,11 @@ use crate::args::{Args, ARGS};
|
||||||
#[derive(Template)]
|
#[derive(Template)]
|
||||||
#[template(path = "error.html")]
|
#[template(path = "error.html")]
|
||||||
pub struct ErrorTemplate<'a> {
|
pub struct ErrorTemplate<'a> {
|
||||||
pub status_code: StatusCode,
|
|
||||||
pub args: &'a Args,
|
pub args: &'a Args,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn not_found() -> Result<HttpResponse, Error> {
|
pub async fn not_found() -> Result<HttpResponse, Error> {
|
||||||
Ok(HttpResponse::NotFound()
|
Ok(HttpResponse::Ok()
|
||||||
.content_type("text/html")
|
.content_type("text/html")
|
||||||
.body(ErrorTemplate {
|
.body(ErrorTemplate { args: &ARGS }.render().unwrap()))
|
||||||
status_code: StatusCode::NOT_FOUND,
|
|
||||||
args: &ARGS
|
|
||||||
}.render().unwrap()))
|
|
||||||
}
|
}
|
||||||
|
|
23
src/endpoints/help.rs
Normal file
23
src/endpoints/help.rs
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
use crate::args::{Args, ARGS};
|
||||||
|
use actix_web::{get, HttpResponse};
|
||||||
|
use askama::Template;
|
||||||
|
use std::marker::PhantomData;
|
||||||
|
|
||||||
|
#[derive(Template)]
|
||||||
|
#[template(path = "help.html")]
|
||||||
|
struct Help<'a> {
|
||||||
|
args: &'a Args,
|
||||||
|
_marker: PhantomData<&'a ()>,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[get("/help")]
|
||||||
|
pub async fn help() -> HttpResponse {
|
||||||
|
HttpResponse::Ok().content_type("text/html").body(
|
||||||
|
Help {
|
||||||
|
args: &ARGS,
|
||||||
|
_marker: Default::default(),
|
||||||
|
}
|
||||||
|
.render()
|
||||||
|
.unwrap(),
|
||||||
|
)
|
||||||
|
}
|
|
@ -1,47 +0,0 @@
|
||||||
use crate::args::{Args, ARGS};
|
|
||||||
use crate::pasta::Pasta;
|
|
||||||
use crate::AppState;
|
|
||||||
use actix_web::{get, web, HttpResponse};
|
|
||||||
use askama::Template;
|
|
||||||
|
|
||||||
#[derive(Template)]
|
|
||||||
#[template(path = "info.html")]
|
|
||||||
struct Info<'a> {
|
|
||||||
args: &'a Args,
|
|
||||||
pastas: &'a Vec<Pasta>,
|
|
||||||
status: &'a str,
|
|
||||||
version_string: &'a str,
|
|
||||||
message: &'a str,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Endpoint to get information about the instance.
|
|
||||||
#[get("/info")]
|
|
||||||
pub async fn info(data: web::Data<AppState>) -> HttpResponse {
|
|
||||||
// get access to the pasta collection
|
|
||||||
let pastas = data.pastas.lock().await;
|
|
||||||
|
|
||||||
// TODO: status report more sophisticated
|
|
||||||
// maybe:
|
|
||||||
// - detect weird/invalid configurations?
|
|
||||||
// - detect server storage issues
|
|
||||||
// - detect performance problems?
|
|
||||||
let mut status = "OK";
|
|
||||||
let mut message = "";
|
|
||||||
|
|
||||||
if ARGS.public_path.to_string() == "" {
|
|
||||||
status = "WARNING";
|
|
||||||
message = "Warning: No public URL set with --public-path parameter. QR code and URL Copying functions have been disabled"
|
|
||||||
}
|
|
||||||
|
|
||||||
HttpResponse::Ok().content_type("text/html").body(
|
|
||||||
Info {
|
|
||||||
args: &ARGS,
|
|
||||||
pastas: &pastas,
|
|
||||||
status,
|
|
||||||
version_string: env!("CARGO_PKG_VERSION"),
|
|
||||||
message
|
|
||||||
}
|
|
||||||
.render()
|
|
||||||
.unwrap(),
|
|
||||||
)
|
|
||||||
}
|
|
|
@ -1,16 +1,12 @@
|
||||||
|
use actix_web::{get, web, HttpResponse};
|
||||||
|
use askama::Template;
|
||||||
|
|
||||||
use crate::args::{Args, ARGS};
|
use crate::args::{Args, ARGS};
|
||||||
use crate::dbio::save_to_file;
|
|
||||||
use crate::endpoints::errors::ErrorTemplate;
|
use crate::endpoints::errors::ErrorTemplate;
|
||||||
use crate::pasta::Pasta;
|
use crate::pasta::Pasta;
|
||||||
use crate::util::hashids::to_u64 as hashid_to_u64;
|
use crate::util::animalnumbers::to_u64;
|
||||||
use crate::util::misc::remove_expired;
|
use crate::util::misc::remove_expired;
|
||||||
use crate::AppState;
|
use crate::AppState;
|
||||||
use crate::util::pasta_id_converter::CONVERTER;
|
|
||||||
|
|
||||||
use actix_web::http::StatusCode;
|
|
||||||
use actix_web::{web, HttpResponse};
|
|
||||||
use askama::Template;
|
|
||||||
use std::time::{SystemTime, UNIX_EPOCH};
|
|
||||||
|
|
||||||
#[derive(Template)]
|
#[derive(Template)]
|
||||||
#[template(path = "pasta.html", escape = "none")]
|
#[template(path = "pasta.html", escape = "none")]
|
||||||
|
@ -19,195 +15,74 @@ struct PastaTemplate<'a> {
|
||||||
args: &'a Args,
|
args: &'a Args,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Endpoint to view a pasta.
|
#[get("/pasta/{id}")]
|
||||||
pub async fn getpasta(data: web::Data<AppState>, id: web::Path<String>) -> HttpResponse {
|
pub async fn getpasta(data: web::Data<AppState>, id: web::Path<String>) -> HttpResponse {
|
||||||
// get access to the pasta collection
|
let mut pastas = data.pastas.lock().unwrap();
|
||||||
let mut pastas = data.pastas.lock().await;
|
|
||||||
|
|
||||||
let id = if ARGS.hash_ids {
|
let id = to_u64(&*id.into_inner()).unwrap_or(0);
|
||||||
hashid_to_u64(&id).unwrap_or(0)
|
|
||||||
} else {
|
println!("{}", id);
|
||||||
CONVERTER.to_u64(&id.into_inner()).unwrap_or(0)
|
|
||||||
};
|
|
||||||
|
|
||||||
// remove expired pastas (including this one if needed)
|
|
||||||
remove_expired(&mut pastas);
|
remove_expired(&mut pastas);
|
||||||
|
|
||||||
// find the index of the pasta in the collection based on u64 id
|
for pasta in pastas.iter() {
|
||||||
let mut index: usize = 0;
|
|
||||||
let mut found: bool = false;
|
|
||||||
for (i, pasta) in pastas.iter().enumerate() {
|
|
||||||
if pasta.id == id {
|
if pasta.id == id {
|
||||||
index = i;
|
return HttpResponse::Ok().content_type("text/html").body(
|
||||||
found = true;
|
PastaTemplate {
|
||||||
break;
|
pasta: &pasta,
|
||||||
}
|
args: &ARGS,
|
||||||
}
|
|
||||||
|
|
||||||
if found {
|
|
||||||
// increment read count
|
|
||||||
pastas[index].read_count += 1;
|
|
||||||
|
|
||||||
// save the updated read count
|
|
||||||
save_to_file(&pastas);
|
|
||||||
|
|
||||||
// serve pasta in template
|
|
||||||
let response = HttpResponse::Ok().content_type("text/html").body(
|
|
||||||
PastaTemplate {
|
|
||||||
pasta: &pastas[index],
|
|
||||||
args: &ARGS,
|
|
||||||
}
|
|
||||||
.render()
|
|
||||||
.unwrap(),
|
|
||||||
);
|
|
||||||
|
|
||||||
// get current unix time in seconds
|
|
||||||
let timenow: i64 = match SystemTime::now().duration_since(UNIX_EPOCH) {
|
|
||||||
Ok(n) => n.as_secs(),
|
|
||||||
Err(_) => {
|
|
||||||
log::error!("SystemTime before UNIX EPOCH!");
|
|
||||||
0
|
|
||||||
}
|
|
||||||
} as i64;
|
|
||||||
|
|
||||||
// update last read time
|
|
||||||
pastas[index].last_read = timenow;
|
|
||||||
|
|
||||||
return response;
|
|
||||||
}
|
|
||||||
|
|
||||||
// otherwise
|
|
||||||
// send pasta not found error
|
|
||||||
HttpResponse::NotFound()
|
|
||||||
.content_type("text/html")
|
|
||||||
.body(ErrorTemplate {
|
|
||||||
status_code: StatusCode::NOT_FOUND,
|
|
||||||
args: &ARGS
|
|
||||||
}.render().unwrap())
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Endpoint for redirection.
|
|
||||||
pub async fn redirecturl(data: web::Data<AppState>, id: web::Path<String>) -> HttpResponse {
|
|
||||||
// get access to the pasta collection
|
|
||||||
let mut pastas = data.pastas.lock().await;
|
|
||||||
|
|
||||||
let id = if ARGS.hash_ids {
|
|
||||||
hashid_to_u64(&id).unwrap_or(0)
|
|
||||||
} else {
|
|
||||||
CONVERTER.to_u64(&id.into_inner()).unwrap_or(0)
|
|
||||||
};
|
|
||||||
|
|
||||||
// remove expired pastas (including this one if needed)
|
|
||||||
remove_expired(&mut pastas);
|
|
||||||
|
|
||||||
// find the index of the pasta in the collection based on u64 id
|
|
||||||
let mut index: usize = 0;
|
|
||||||
let mut found: bool = false;
|
|
||||||
|
|
||||||
for (i, pasta) in pastas.iter().enumerate() {
|
|
||||||
if pasta.id == id {
|
|
||||||
index = i;
|
|
||||||
found = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if found {
|
|
||||||
// increment read count
|
|
||||||
pastas[index].read_count += 1;
|
|
||||||
|
|
||||||
// save the updated read count
|
|
||||||
save_to_file(&pastas);
|
|
||||||
|
|
||||||
// send redirect if it's a url pasta
|
|
||||||
if pastas[index].pasta_type == "url" {
|
|
||||||
let response = HttpResponse::Found()
|
|
||||||
.append_header(("Location", String::from(&pastas[index].content)))
|
|
||||||
.finish();
|
|
||||||
|
|
||||||
// get current unix time in seconds
|
|
||||||
let timenow: i64 = match SystemTime::now().duration_since(UNIX_EPOCH) {
|
|
||||||
Ok(n) => n.as_secs(),
|
|
||||||
Err(_) => {
|
|
||||||
log::error!("SystemTime before UNIX EPOCH!");
|
|
||||||
0
|
|
||||||
}
|
}
|
||||||
} as i64;
|
.render()
|
||||||
|
.unwrap(),
|
||||||
// update last read time
|
);
|
||||||
pastas[index].last_read = timenow;
|
|
||||||
|
|
||||||
return response;
|
|
||||||
// send error if we're trying to open a non-url pasta as a redirect
|
|
||||||
} else {
|
|
||||||
HttpResponse::NotFound()
|
|
||||||
.content_type("text/html")
|
|
||||||
.body(ErrorTemplate {
|
|
||||||
status_code: StatusCode::NOT_FOUND,
|
|
||||||
args: &ARGS
|
|
||||||
}.render().unwrap());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// otherwise
|
HttpResponse::Ok()
|
||||||
// send pasta not found error
|
|
||||||
HttpResponse::NotFound()
|
|
||||||
.content_type("text/html")
|
.content_type("text/html")
|
||||||
.body(ErrorTemplate {
|
.body(ErrorTemplate { args: &ARGS }.render().unwrap())
|
||||||
status_code: StatusCode::NOT_FOUND,
|
|
||||||
args: &ARGS
|
|
||||||
}.render().unwrap())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Endpoint to request pasta as raw file.
|
#[get("/url/{id}")]
|
||||||
pub async fn getrawpasta(data: web::Data<AppState>, id: web::Path<String>) -> String {
|
pub async fn redirecturl(data: web::Data<AppState>, id: web::Path<String>) -> HttpResponse {
|
||||||
// get access to the pasta collection
|
let mut pastas = data.pastas.lock().unwrap();
|
||||||
let mut pastas = data.pastas.lock().await;
|
|
||||||
|
|
||||||
let id = if ARGS.hash_ids {
|
let id = to_u64(&*id.into_inner()).unwrap_or(0);
|
||||||
hashid_to_u64(&id).unwrap_or(0)
|
|
||||||
} else {
|
|
||||||
CONVERTER.to_u64(&id.into_inner()).unwrap_or(0)
|
|
||||||
};
|
|
||||||
|
|
||||||
// remove expired pastas (including this one if needed)
|
|
||||||
remove_expired(&mut pastas);
|
remove_expired(&mut pastas);
|
||||||
|
|
||||||
// find the index of the pasta in the collection based on u64 id
|
for pasta in pastas.iter() {
|
||||||
let mut index: usize = 0;
|
|
||||||
let mut found: bool = false;
|
|
||||||
for (i, pasta) in pastas.iter().enumerate() {
|
|
||||||
if pasta.id == id {
|
if pasta.id == id {
|
||||||
index = i;
|
if pasta.pasta_type == "url" {
|
||||||
found = true;
|
return HttpResponse::Found()
|
||||||
break;
|
.append_header(("Location", String::from(&pasta.content)))
|
||||||
|
.finish();
|
||||||
|
} else {
|
||||||
|
return HttpResponse::Ok()
|
||||||
|
.content_type("text/html")
|
||||||
|
.body(ErrorTemplate { args: &ARGS }.render().unwrap());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if found {
|
HttpResponse::Ok()
|
||||||
// increment read count
|
.content_type("text/html")
|
||||||
pastas[index].read_count += 1;
|
.body(ErrorTemplate { args: &ARGS }.render().unwrap())
|
||||||
|
}
|
||||||
|
|
||||||
// get current unix time in seconds
|
#[get("/raw/{id}")]
|
||||||
let timenow: i64 = match SystemTime::now().duration_since(UNIX_EPOCH) {
|
pub async fn getrawpasta(data: web::Data<AppState>, id: web::Path<String>) -> String {
|
||||||
Ok(n) => n.as_secs(),
|
let mut pastas = data.pastas.lock().unwrap();
|
||||||
Err(_) => {
|
|
||||||
log::error!("SystemTime before UNIX EPOCH!");
|
|
||||||
0
|
|
||||||
}
|
|
||||||
} as i64;
|
|
||||||
|
|
||||||
// update last read time
|
let id = to_u64(&*id.into_inner()).unwrap_or(0);
|
||||||
pastas[index].last_read = timenow;
|
|
||||||
|
|
||||||
// save the updated read count
|
remove_expired(&mut pastas);
|
||||||
save_to_file(&pastas);
|
|
||||||
|
|
||||||
// send raw content of pasta
|
for pasta in pastas.iter() {
|
||||||
return pastas[index].content.to_owned();
|
if pasta.id == id {
|
||||||
|
return pasta.content.to_owned();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// otherwise
|
|
||||||
// send pasta not found error as raw text
|
|
||||||
String::from("Pasta not found! :-(")
|
String::from("Pasta not found! :-(")
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,16 +13,15 @@ struct PastaListTemplate<'a> {
|
||||||
args: &'a Args,
|
args: &'a Args,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The endpoint to view all currently registered pastas.
|
|
||||||
#[get("/pastalist")]
|
#[get("/pastalist")]
|
||||||
pub async fn list(data: web::Data<AppState>) -> HttpResponse {
|
pub async fn list(data: web::Data<AppState>) -> HttpResponse {
|
||||||
if ARGS.no_listing {
|
if ARGS.no_listing {
|
||||||
return HttpResponse::Found()
|
return HttpResponse::Found()
|
||||||
.append_header(("Location", format!("{}/", ARGS.public_path)))
|
.append_header(("Location", "/"))
|
||||||
.finish();
|
.finish();
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut pastas = data.pastas.lock().await;
|
let mut pastas = data.pastas.lock().unwrap();
|
||||||
|
|
||||||
remove_expired(&mut pastas);
|
remove_expired(&mut pastas);
|
||||||
|
|
||||||
|
|
|
@ -1,73 +0,0 @@
|
||||||
use crate::args::{Args, ARGS};
|
|
||||||
use crate::endpoints::errors::ErrorTemplate;
|
|
||||||
use crate::pasta::Pasta;
|
|
||||||
use crate::util::hashids::to_u64 as hashid_to_u64;
|
|
||||||
use crate::util::misc::{self, remove_expired};
|
|
||||||
use crate::AppState;
|
|
||||||
use crate::util::pasta_id_converter::CONVERTER;
|
|
||||||
use actix_web::http::StatusCode;
|
|
||||||
use actix_web::{get, web, HttpResponse};
|
|
||||||
use askama::Template;
|
|
||||||
|
|
||||||
#[derive(Template)]
|
|
||||||
#[template(path = "qr.html", escape = "none")]
|
|
||||||
struct QRTemplate<'a> {
|
|
||||||
qr: &'a String,
|
|
||||||
pasta: &'a Pasta,
|
|
||||||
args: &'a Args,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Endpoint to open a QR code to a pasta.
|
|
||||||
#[get("/qr/{id}")]
|
|
||||||
pub async fn getqr(data: web::Data<AppState>, id: web::Path<String>) -> HttpResponse {
|
|
||||||
// get access to the pasta collection
|
|
||||||
let mut pastas = data.pastas.lock().await;
|
|
||||||
|
|
||||||
let u64_id = if ARGS.hash_ids {
|
|
||||||
hashid_to_u64(&id).unwrap_or(0)
|
|
||||||
} else {
|
|
||||||
CONVERTER.to_u64(&id).unwrap_or(0)
|
|
||||||
};
|
|
||||||
|
|
||||||
// remove expired pastas (including this one if needed)
|
|
||||||
remove_expired(&mut pastas);
|
|
||||||
|
|
||||||
// find the index of the pasta in the collection based on u64 id
|
|
||||||
let mut index: usize = 0;
|
|
||||||
let mut found: bool = false;
|
|
||||||
for (i, pasta) in pastas.iter().enumerate() {
|
|
||||||
if pasta.id == u64_id {
|
|
||||||
index = i;
|
|
||||||
found = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if found {
|
|
||||||
// generate the QR code as an SVG - if its a file or text pastas, this will point to the /pasta endpoint, otherwise to the /url endpoint, essentially directly taking the user to the url stored in the pasta
|
|
||||||
let svg: String = match pastas[index].pasta_type.as_str() {
|
|
||||||
"url" => misc::string_to_qr_svg(format!("{}/url/{}", &ARGS.public_path, &id).as_str()),
|
|
||||||
_ => misc::string_to_qr_svg(format!("{}/pasta/{}", &ARGS.public_path, &id).as_str()),
|
|
||||||
};
|
|
||||||
|
|
||||||
// serve qr code in template
|
|
||||||
return HttpResponse::Ok().content_type("text/html").body(
|
|
||||||
QRTemplate {
|
|
||||||
qr: &svg,
|
|
||||||
pasta: &pastas[index],
|
|
||||||
args: &ARGS,
|
|
||||||
}
|
|
||||||
.render()
|
|
||||||
.unwrap(),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// otherwise
|
|
||||||
// send pasta not found error
|
|
||||||
HttpResponse::NotFound()
|
|
||||||
.content_type("text/html")
|
|
||||||
.body(ErrorTemplate {
|
|
||||||
status_code: StatusCode::NOT_FOUND,
|
|
||||||
args: &ARGS
|
|
||||||
}.render().unwrap())
|
|
||||||
}
|
|
|
@ -1,68 +1,52 @@
|
||||||
use actix_web::http::StatusCode;
|
|
||||||
use actix_web::{get, web, HttpResponse};
|
use actix_web::{get, web, HttpResponse};
|
||||||
|
|
||||||
use crate::args::ARGS;
|
use crate::args::ARGS;
|
||||||
use crate::endpoints::errors::ErrorTemplate;
|
use crate::endpoints::errors::ErrorTemplate;
|
||||||
use crate::pasta::PastaFile;
|
use crate::pasta::PastaFile;
|
||||||
use crate::util::hashids::to_u64 as hashid_to_u64;
|
use crate::util::animalnumbers::to_u64;
|
||||||
use crate::util::misc::remove_expired;
|
use crate::util::misc::remove_expired;
|
||||||
use crate::AppState;
|
use crate::AppState;
|
||||||
use crate::util::pasta_id_converter::CONVERTER;
|
|
||||||
use askama::Template;
|
use askama::Template;
|
||||||
use std::fs;
|
use std::fs;
|
||||||
|
|
||||||
/// Endpoint to remove a pasta.
|
|
||||||
#[get("/remove/{id}")]
|
#[get("/remove/{id}")]
|
||||||
pub async fn remove(data: web::Data<AppState>, id: web::Path<String>) -> HttpResponse {
|
pub async fn remove(data: web::Data<AppState>, id: web::Path<String>) -> HttpResponse {
|
||||||
if ARGS.readonly {
|
if ARGS.readonly {
|
||||||
return HttpResponse::Found()
|
return HttpResponse::Found()
|
||||||
.append_header(("Location", format!("{}/", ARGS.public_path)))
|
.append_header(("Location", "/"))
|
||||||
.finish();
|
.finish();
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut pastas = data.pastas.lock().await;
|
let mut pastas = data.pastas.lock().unwrap();
|
||||||
|
|
||||||
let id = if ARGS.hash_ids {
|
let id = to_u64(&*id.into_inner()).unwrap_or(0);
|
||||||
hashid_to_u64(&id).unwrap_or(0)
|
|
||||||
} else {
|
|
||||||
CONVERTER.to_u64(&id.into_inner()).unwrap_or(0)
|
|
||||||
};
|
|
||||||
|
|
||||||
for (i, pasta) in pastas.iter().enumerate() {
|
for (i, pasta) in pastas.iter().enumerate() {
|
||||||
if pasta.id == id {
|
if pasta.id == id {
|
||||||
// remove the file itself
|
// remove the file itself
|
||||||
if let Some(PastaFile { name, .. }) = &pasta.file {
|
if let Some(PastaFile { name, .. }) = &pasta.file {
|
||||||
if fs::remove_file(format!(
|
if fs::remove_file(format!("./pasta_data/public/{}/{}", pasta.id_as_animals(), name))
|
||||||
"./pasta_data/public/{}/{}",
|
.is_err()
|
||||||
pasta.id_as_animals(),
|
|
||||||
name
|
|
||||||
))
|
|
||||||
.is_err()
|
|
||||||
{
|
{
|
||||||
log::error!("Failed to delete file {}!", name)
|
log::error!("Failed to delete file {}!", name)
|
||||||
}
|
}
|
||||||
|
|
||||||
// and remove the containing directory
|
// and remove the containing directory
|
||||||
if fs::remove_dir(format!("./pasta_data/public/{}/", pasta.id_as_animals()))
|
if fs::remove_dir(format!("./pasta_data/public/{}/", pasta.id_as_animals())).is_err() {
|
||||||
.is_err()
|
|
||||||
{
|
|
||||||
log::error!("Failed to delete directory {}!", name)
|
log::error!("Failed to delete directory {}!", name)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// remove it from in-memory pasta list
|
// remove it from in-memory pasta list
|
||||||
pastas.remove(i);
|
pastas.remove(i);
|
||||||
return HttpResponse::Found()
|
return HttpResponse::Found()
|
||||||
.append_header(("Location", format!("{}/pastalist", ARGS.public_path)))
|
.append_header(("Location", "/pastalist"))
|
||||||
.finish();
|
.finish();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
remove_expired(&mut pastas);
|
remove_expired(&mut pastas);
|
||||||
|
|
||||||
HttpResponse::NotFound()
|
HttpResponse::Ok()
|
||||||
.content_type("text/html")
|
.content_type("text/html")
|
||||||
.body(ErrorTemplate {
|
.body(ErrorTemplate { args: &ARGS }.render().unwrap())
|
||||||
status_code: StatusCode::NOT_FOUND,
|
|
||||||
args: &ARGS
|
|
||||||
}.render().unwrap())
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,21 +1,23 @@
|
||||||
use actix_web::{web, HttpResponse, Responder};
|
use actix_web::{get, web, HttpResponse};
|
||||||
use mime_guess::from_path;
|
use askama::Template;
|
||||||
use rust_embed::RustEmbed;
|
use std::marker::PhantomData;
|
||||||
|
|
||||||
#[derive(RustEmbed)]
|
#[derive(Template)]
|
||||||
#[folder = "templates/assets/"]
|
#[template(path = "water.css", escape = "none")]
|
||||||
struct Asset;
|
struct WaterCSS<'a> {
|
||||||
|
_marker: PhantomData<&'a ()>,
|
||||||
|
}
|
||||||
|
|
||||||
fn handle_embedded_file(path: &str) -> HttpResponse {
|
#[get("/static/{resource}")]
|
||||||
match Asset::get(path) {
|
pub async fn static_resources(resource_id: web::Path<String>) -> HttpResponse {
|
||||||
Some(content) => HttpResponse::Ok()
|
match resource_id.into_inner().as_str() {
|
||||||
.content_type(from_path(path).first_or_octet_stream().as_ref())
|
"water.css" => HttpResponse::Ok().content_type("text/css").body(
|
||||||
.body(content.data.into_owned()),
|
WaterCSS {
|
||||||
None => HttpResponse::NotFound().body("404 Not Found"),
|
_marker: Default::default(),
|
||||||
|
}
|
||||||
|
.render()
|
||||||
|
.unwrap(),
|
||||||
|
),
|
||||||
|
_ => HttpResponse::NotFound().content_type("text/html").finish(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[actix_web::get("/static/{_:.*}")]
|
|
||||||
async fn static_resources(path: web::Path<String>) -> impl Responder {
|
|
||||||
handle_embedded_file(path.as_str())
|
|
||||||
}
|
|
||||||
|
|
35
src/main.rs
35
src/main.rs
|
@ -2,7 +2,7 @@ extern crate core;
|
||||||
|
|
||||||
use crate::args::ARGS;
|
use crate::args::ARGS;
|
||||||
use crate::endpoints::{
|
use crate::endpoints::{
|
||||||
create, edit, errors, info, pasta as pasta_endpoint, pastalist, qr, remove, static_resources,
|
create, edit, errors, help, pasta as pasta_endpoint, pastalist, remove, static_resources,
|
||||||
};
|
};
|
||||||
use crate::pasta::Pasta;
|
use crate::pasta::Pasta;
|
||||||
use crate::util::dbio;
|
use crate::util::dbio;
|
||||||
|
@ -11,19 +11,18 @@ use actix_web::{middleware, web, App, HttpServer};
|
||||||
use actix_web_httpauth::middleware::HttpAuthentication;
|
use actix_web_httpauth::middleware::HttpAuthentication;
|
||||||
use chrono::Local;
|
use chrono::Local;
|
||||||
use env_logger::Builder;
|
use env_logger::Builder;
|
||||||
use futures::lock::Mutex;
|
|
||||||
use log::LevelFilter;
|
use log::LevelFilter;
|
||||||
use std::fs;
|
use std::fs;
|
||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
|
use std::sync::Mutex;
|
||||||
|
|
||||||
pub mod args;
|
pub mod args;
|
||||||
pub mod pasta;
|
pub mod pasta;
|
||||||
|
|
||||||
pub mod util {
|
pub mod util {
|
||||||
pub mod pasta_id_converter;
|
pub mod animalnumbers;
|
||||||
pub mod auth;
|
pub mod auth;
|
||||||
pub mod dbio;
|
pub mod dbio;
|
||||||
pub mod hashids;
|
|
||||||
pub mod misc;
|
pub mod misc;
|
||||||
pub mod syntaxhighlighter;
|
pub mod syntaxhighlighter;
|
||||||
}
|
}
|
||||||
|
@ -32,10 +31,9 @@ pub mod endpoints {
|
||||||
pub mod create;
|
pub mod create;
|
||||||
pub mod edit;
|
pub mod edit;
|
||||||
pub mod errors;
|
pub mod errors;
|
||||||
pub mod info;
|
pub mod help;
|
||||||
pub mod pasta;
|
pub mod pasta;
|
||||||
pub mod pastalist;
|
pub mod pastalist;
|
||||||
pub mod qr;
|
|
||||||
pub mod remove;
|
pub mod remove;
|
||||||
pub mod static_resources;
|
pub mod static_resources;
|
||||||
}
|
}
|
||||||
|
@ -68,8 +66,8 @@ async fn main() -> std::io::Result<()> {
|
||||||
match fs::create_dir_all("./pasta_data/public") {
|
match fs::create_dir_all("./pasta_data/public") {
|
||||||
Ok(dir) => dir,
|
Ok(dir) => dir,
|
||||||
Err(error) => {
|
Err(error) => {
|
||||||
log::error!("Couldn't create data directory ./pasta_data/public/: {error:?}");
|
log::error!("Couldn't create data directory ./pasta_data/public/: {:?}", error);
|
||||||
panic!("Couldn't create data directory ./pasta_data/public/: {error:?}");
|
panic!("Couldn't create data directory ./pasta_data/public/: {:?}", error);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -82,26 +80,13 @@ async fn main() -> std::io::Result<()> {
|
||||||
.app_data(data.clone())
|
.app_data(data.clone())
|
||||||
.wrap(middleware::NormalizePath::trim())
|
.wrap(middleware::NormalizePath::trim())
|
||||||
.service(create::index)
|
.service(create::index)
|
||||||
.service(info::info)
|
.service(help::help)
|
||||||
.route(
|
.service(pasta_endpoint::getpasta)
|
||||||
&format!("/{}/{{id}}", ARGS.pasta_endpoint),
|
.service(pasta_endpoint::getrawpasta)
|
||||||
web::get().to(pasta_endpoint::getpasta)
|
.service(pasta_endpoint::redirecturl)
|
||||||
)
|
|
||||||
.route(
|
|
||||||
&format!("/{}/{{id}}", ARGS.raw_endpoint),
|
|
||||||
web::get().to(pasta_endpoint::getrawpasta)
|
|
||||||
)
|
|
||||||
.route(
|
|
||||||
&format!("/{}/{{id}}", ARGS.url_endpoint),
|
|
||||||
web::get().to(pasta_endpoint::redirecturl)
|
|
||||||
)
|
|
||||||
//.service(pasta_endpoint::getpasta)
|
|
||||||
//.service(pasta_endpoint::getrawpasta)
|
|
||||||
//.service(pasta_endpoint::redirecturl)
|
|
||||||
.service(edit::get_edit)
|
.service(edit::get_edit)
|
||||||
.service(edit::post_edit)
|
.service(edit::post_edit)
|
||||||
.service(static_resources::static_resources)
|
.service(static_resources::static_resources)
|
||||||
.service(qr::getqr)
|
|
||||||
.service(actix_files::Files::new("/file", "./pasta_data/public/"))
|
.service(actix_files::Files::new("/file", "./pasta_data/public/"))
|
||||||
.service(web::resource("/upload").route(web::post().to(create::create)))
|
.service(web::resource("/upload").route(web::post().to(create::create)))
|
||||||
.default_service(web::route().to(errors::not_found))
|
.default_service(web::route().to(errors::not_found))
|
||||||
|
|
81
src/pasta.rs
81
src/pasta.rs
|
@ -3,11 +3,8 @@ use chrono::{Datelike, Local, TimeZone, Timelike};
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use std::fmt;
|
use std::fmt;
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
use std::time::{SystemTime, UNIX_EPOCH};
|
|
||||||
|
|
||||||
use crate::args::ARGS;
|
use crate::util::animalnumbers::to_animal_names;
|
||||||
use crate::util::hashids::to_hashids;
|
|
||||||
use crate::util::pasta_id_converter::CONVERTER;
|
|
||||||
use crate::util::syntaxhighlighter::html_highlight;
|
use crate::util::syntaxhighlighter::html_highlight;
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, PartialEq, Eq)]
|
#[derive(Serialize, Deserialize, PartialEq, Eq)]
|
||||||
|
@ -30,12 +27,6 @@ impl PastaFile {
|
||||||
pub fn name(&self) -> &str {
|
pub fn name(&self) -> &str {
|
||||||
&self.name
|
&self.name
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Check if file is an image for embedding
|
|
||||||
pub fn is_image(&self) -> bool {
|
|
||||||
let guess = mime_guess::from_path(&self.name).first_or_text_plain();
|
|
||||||
guess.type_() == "image"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize)]
|
#[derive(Serialize, Deserialize)]
|
||||||
|
@ -48,21 +39,12 @@ pub struct Pasta {
|
||||||
pub editable: bool,
|
pub editable: bool,
|
||||||
pub created: i64,
|
pub created: i64,
|
||||||
pub expiration: i64,
|
pub expiration: i64,
|
||||||
pub last_read: i64,
|
|
||||||
pub read_count: u64,
|
|
||||||
pub burn_after_reads: u64,
|
|
||||||
// what types can there be?
|
|
||||||
// `url`, `text`,
|
|
||||||
pub pasta_type: String,
|
pub pasta_type: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Pasta {
|
impl Pasta {
|
||||||
pub fn id_as_animals(&self) -> String {
|
pub fn id_as_animals(&self) -> String {
|
||||||
if ARGS.hash_ids {
|
to_animal_names(self.id)
|
||||||
to_hashids(self.id)
|
|
||||||
} else {
|
|
||||||
CONVERTER.to_names(self.id)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn created_as_string(&self) -> String {
|
pub fn created_as_string(&self) -> String {
|
||||||
|
@ -91,58 +73,6 @@ impl Pasta {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn last_read_time_ago_as_string(&self) -> String {
|
|
||||||
// get current unix time in seconds
|
|
||||||
let timenow: i64 = match SystemTime::now().duration_since(UNIX_EPOCH) {
|
|
||||||
Ok(n) => n.as_secs(),
|
|
||||||
Err(_) => {
|
|
||||||
log::error!("SystemTime before UNIX EPOCH!");
|
|
||||||
0
|
|
||||||
}
|
|
||||||
} as i64;
|
|
||||||
|
|
||||||
// get seconds since last read and convert it to days
|
|
||||||
let days = ((timenow - self.last_read) / 86400) as u16;
|
|
||||||
if days > 1 {
|
|
||||||
return format!("{days} days ago");
|
|
||||||
};
|
|
||||||
|
|
||||||
// it's less than 1 day, let's do hours then
|
|
||||||
let hours = ((timenow - self.last_read) / 3600) as u16;
|
|
||||||
if hours > 1 {
|
|
||||||
return format!("{hours} hours ago");
|
|
||||||
};
|
|
||||||
|
|
||||||
// it's less than 1 hour, let's do minutes then
|
|
||||||
let minutes = ((timenow - self.last_read) / 60) as u16;
|
|
||||||
if minutes > 1 {
|
|
||||||
return format!("{minutes} minutes ago");
|
|
||||||
};
|
|
||||||
|
|
||||||
// it's less than 1 minute, let's do seconds then
|
|
||||||
let seconds = (timenow - self.last_read) as u16;
|
|
||||||
if seconds > 1 {
|
|
||||||
return format!("{seconds} seconds ago");
|
|
||||||
};
|
|
||||||
|
|
||||||
// it's less than 1 second?????
|
|
||||||
String::from("just now")
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn last_read_days_ago(&self) -> u16 {
|
|
||||||
// get current unix time in seconds
|
|
||||||
let timenow: i64 = match SystemTime::now().duration_since(UNIX_EPOCH) {
|
|
||||||
Ok(n) => n.as_secs(),
|
|
||||||
Err(_) => {
|
|
||||||
log::error!("SystemTime before UNIX EPOCH!");
|
|
||||||
0
|
|
||||||
}
|
|
||||||
} as i64;
|
|
||||||
|
|
||||||
// get seconds since last read and convert it to days
|
|
||||||
((timenow - self.last_read) / 86400) as u16
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn content_syntax_highlighted(&self) -> String {
|
pub fn content_syntax_highlighted(&self) -> String {
|
||||||
html_highlight(&self.content, &self.extension)
|
html_highlight(&self.content, &self.extension)
|
||||||
}
|
}
|
||||||
|
@ -150,13 +80,6 @@ impl Pasta {
|
||||||
pub fn content_not_highlighted(&self) -> String {
|
pub fn content_not_highlighted(&self) -> String {
|
||||||
html_highlight(&self.content, "txt")
|
html_highlight(&self.content, "txt")
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn content_escaped(&self) -> String {
|
|
||||||
self.content
|
|
||||||
.replace('`', "\\`")
|
|
||||||
.replace('$', "\\$")
|
|
||||||
.replace('/', "\\/")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl fmt::Display for Pasta {
|
impl fmt::Display for Pasta {
|
||||||
|
|
53
src/util/animalnumbers.rs
Normal file
53
src/util/animalnumbers.rs
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
const ANIMAL_NAMES: &[&str] = &[
|
||||||
|
"ant", "eel", "mole", "sloth", "ape", "emu", "monkey", "snail", "bat", "falcon", "mouse",
|
||||||
|
"snake", "bear", "fish", "otter", "spider", "bee", "fly", "parrot", "squid", "bird", "fox",
|
||||||
|
"panda", "swan", "bison", "frog", "pig", "tiger", "camel", "gecko", "pigeon", "toad", "cat",
|
||||||
|
"goat", "pony", "turkey", "cobra", "goose", "pug", "turtle", "crow", "hawk", "rabbit", "viper",
|
||||||
|
"deer", "horse", "rat", "wasp", "dog", "jaguar", "raven", "whale", "dove", "koala", "seal",
|
||||||
|
"wolf", "duck", "lion", "shark", "worm", "eagle", "lizard", "sheep", "zebra",
|
||||||
|
];
|
||||||
|
|
||||||
|
pub fn to_animal_names(mut number: u64) -> String {
|
||||||
|
let mut result: Vec<&str> = Vec::new();
|
||||||
|
|
||||||
|
if number == 0 {
|
||||||
|
return ANIMAL_NAMES[0].parse().unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut power = 6;
|
||||||
|
|
||||||
|
loop {
|
||||||
|
let digit = number / ANIMAL_NAMES.len().pow(power) as u64;
|
||||||
|
if !(result.is_empty() && digit == 0) {
|
||||||
|
result.push(ANIMAL_NAMES[digit as usize]);
|
||||||
|
}
|
||||||
|
number -= digit * ANIMAL_NAMES.len().pow(power) as u64;
|
||||||
|
if power > 0 {
|
||||||
|
power -= 1;
|
||||||
|
} else if power <= 0 || number == 0 {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
result.join("-")
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn to_u64(animal_names: &str) -> Result<u64, &str> {
|
||||||
|
let mut result: u64 = 0;
|
||||||
|
|
||||||
|
let animals: Vec<&str> = animal_names.split("-").collect();
|
||||||
|
|
||||||
|
let mut pow = animals.len();
|
||||||
|
for i in 0..animals.len() {
|
||||||
|
pow -= 1;
|
||||||
|
let animal_index = ANIMAL_NAMES.iter().position(|&r| r == animals[i]);
|
||||||
|
match animal_index {
|
||||||
|
None => return Err("Failed to convert animal name to u64!"),
|
||||||
|
Some(_) => {
|
||||||
|
result += (animal_index.unwrap() * ANIMAL_NAMES.len().pow(pow as u32)) as u64
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(result)
|
||||||
|
}
|
|
@ -4,7 +4,7 @@ use std::io::{BufReader, BufWriter};
|
||||||
|
|
||||||
use crate::Pasta;
|
use crate::Pasta;
|
||||||
|
|
||||||
static DATABASE_PATH: &str = "pasta_data/database.json";
|
static DATABASE_PATH: &'static str = "pasta_data/database.json";
|
||||||
|
|
||||||
pub fn save_to_file(pasta_data: &Vec<Pasta>) {
|
pub fn save_to_file(pasta_data: &Vec<Pasta>) {
|
||||||
let mut file = File::create(DATABASE_PATH);
|
let mut file = File::create(DATABASE_PATH);
|
||||||
|
@ -14,11 +14,11 @@ pub fn save_to_file(pasta_data: &Vec<Pasta>) {
|
||||||
serde_json::to_writer(writer, &pasta_data).expect("Failed to create JSON writer");
|
serde_json::to_writer(writer, &pasta_data).expect("Failed to create JSON writer");
|
||||||
}
|
}
|
||||||
Err(_) => {
|
Err(_) => {
|
||||||
log::info!("Database file {DATABASE_PATH} not found!");
|
log::info!("Database file {} not found!", DATABASE_PATH);
|
||||||
file = File::create(DATABASE_PATH);
|
file = File::create(DATABASE_PATH);
|
||||||
match file {
|
match file {
|
||||||
Ok(_) => {
|
Ok(_) => {
|
||||||
log::info!("Database file {DATABASE_PATH} created.");
|
log::info!("Database file {} created.", DATABASE_PATH);
|
||||||
save_to_file(pasta_data);
|
save_to_file(pasta_data);
|
||||||
}
|
}
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
|
@ -27,7 +27,7 @@ pub fn save_to_file(pasta_data: &Vec<Pasta>) {
|
||||||
&DATABASE_PATH,
|
&DATABASE_PATH,
|
||||||
&err
|
&err
|
||||||
);
|
);
|
||||||
panic!("Failed to create database file {DATABASE_PATH}: {err}!")
|
panic!("Failed to create database file {}: {}!", DATABASE_PATH, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -46,10 +46,10 @@ pub fn load_from_file() -> io::Result<Vec<Pasta>> {
|
||||||
Ok(data)
|
Ok(data)
|
||||||
}
|
}
|
||||||
Err(_) => {
|
Err(_) => {
|
||||||
log::info!("Database file {DATABASE_PATH} not found!");
|
log::info!("Database file {} not found!", DATABASE_PATH);
|
||||||
save_to_file(&Vec::<Pasta>::new());
|
save_to_file(&Vec::<Pasta>::new());
|
||||||
|
|
||||||
log::info!("Database file {DATABASE_PATH} created.");
|
log::info!("Database file {} created.", DATABASE_PATH);
|
||||||
load_from_file()
|
load_from_file()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
use harsh::Harsh;
|
|
||||||
use lazy_static::lazy_static;
|
|
||||||
|
|
||||||
lazy_static! {
|
|
||||||
pub static ref HARSH: Harsh = Harsh::builder().length(6).build().unwrap();
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn to_hashids(number: u64) -> String {
|
|
||||||
HARSH.encode(&[number])
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn to_u64(hash_id: &str) -> Result<u64, &str> {
|
|
||||||
let ids = HARSH
|
|
||||||
.decode(hash_id)
|
|
||||||
.map_err(|_e| "Failed to decode hash ID")?;
|
|
||||||
let id = ids.first().ok_or("No ID found in hash ID")?;
|
|
||||||
Ok(*id)
|
|
||||||
}
|
|
|
@ -1,8 +1,6 @@
|
||||||
use std::time::{SystemTime, UNIX_EPOCH};
|
use std::time::{SystemTime, UNIX_EPOCH};
|
||||||
|
|
||||||
use crate::args::ARGS;
|
|
||||||
use linkify::{LinkFinder, LinkKind};
|
use linkify::{LinkFinder, LinkKind};
|
||||||
use qrcode_generator::QrCodeEcc;
|
|
||||||
use std::fs;
|
use std::fs;
|
||||||
|
|
||||||
use crate::{dbio, Pasta};
|
use crate::{dbio, Pasta};
|
||||||
|
@ -18,16 +16,8 @@ pub fn remove_expired(pastas: &mut Vec<Pasta>) {
|
||||||
} as i64;
|
} as i64;
|
||||||
|
|
||||||
pastas.retain(|p| {
|
pastas.retain(|p| {
|
||||||
// keep if:
|
// expiration is `never` or not reached
|
||||||
// expiration is `never` or not reached
|
if p.expiration == 0 || p.expiration > timenow {
|
||||||
// AND
|
|
||||||
// read count is less than burn limit, or no limit set
|
|
||||||
// AND
|
|
||||||
// has been read in the last N days where N is the arg --gc-days OR N is 0 (no GC)
|
|
||||||
if (p.expiration == 0 || p.expiration > timenow)
|
|
||||||
&& (p.read_count < p.burn_after_reads || p.burn_after_reads == 0)
|
|
||||||
&& (p.last_read_days_ago() < ARGS.gc_days || ARGS.gc_days == 0)
|
|
||||||
{
|
|
||||||
// keep
|
// keep
|
||||||
true
|
true
|
||||||
} else {
|
} else {
|
||||||
|
@ -55,10 +45,6 @@ pub fn remove_expired(pastas: &mut Vec<Pasta>) {
|
||||||
dbio::save_to_file(pastas);
|
dbio::save_to_file(pastas);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn string_to_qr_svg(str: &str) -> String {
|
|
||||||
qrcode_generator::to_svg_to_string(str, QrCodeEcc::Low, 256, None::<&str>).unwrap()
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn is_valid_url(url: &str) -> bool {
|
pub fn is_valid_url(url: &str) -> bool {
|
||||||
let finder = LinkFinder::new();
|
let finder = LinkFinder::new();
|
||||||
let spans: Vec<_> = finder.spans(url).collect();
|
let spans: Vec<_> = finder.spans(url).collect();
|
||||||
|
|
|
@ -1,98 +0,0 @@
|
||||||
use std::fs;
|
|
||||||
|
|
||||||
use lazy_static::lazy_static;
|
|
||||||
|
|
||||||
use crate::args::ARGS;
|
|
||||||
|
|
||||||
const ANIMAL_NAMES: &[&str] = &[
|
|
||||||
"ant", "eel", "mole", "sloth", "ape", "emu", "monkey", "snail", "bat", "falcon", "mouse",
|
|
||||||
"snake", "bear", "fish", "otter", "spider", "bee", "fly", "parrot", "squid", "bird", "fox",
|
|
||||||
"panda", "swan", "bison", "frog", "pig", "tiger", "camel", "gecko", "pigeon", "toad", "cat",
|
|
||||||
"goat", "pony", "turkey", "cobra", "goose", "pug", "turtle", "crow", "hawk", "rabbit", "viper",
|
|
||||||
"deer", "horse", "rat", "wasp", "dog", "jaguar", "raven", "whale", "dove", "koala", "seal",
|
|
||||||
"wolf", "duck", "lion", "shark", "worm", "eagle", "lizard", "sheep", "zebra",
|
|
||||||
];
|
|
||||||
|
|
||||||
lazy_static!{
|
|
||||||
pub static ref CONVERTER: PastaIdConverter = PastaIdConverter::new();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Convert pasta IDs to names and vice versa
|
|
||||||
pub struct PastaIdConverter {
|
|
||||||
names: Vec<String>
|
|
||||||
}
|
|
||||||
|
|
||||||
impl PastaIdConverter {
|
|
||||||
pub fn new() -> Self {
|
|
||||||
let names;
|
|
||||||
if let Some(names_path) = &ARGS.custom_names {
|
|
||||||
let names_data = fs::read_to_string(names_path)
|
|
||||||
.expect("path for the names file should contain a names file");
|
|
||||||
names = names_data
|
|
||||||
.split('\n')
|
|
||||||
.map(ToOwned::to_owned)
|
|
||||||
.collect::<Vec<String>>();
|
|
||||||
} else {
|
|
||||||
names = ANIMAL_NAMES
|
|
||||||
.iter()
|
|
||||||
.copied()
|
|
||||||
.map(ToOwned::to_owned)
|
|
||||||
.collect();
|
|
||||||
}
|
|
||||||
|
|
||||||
Self { names }
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn to_names(&self, mut number: u64) -> String {
|
|
||||||
let mut result: Vec<&str> = Vec::new();
|
|
||||||
|
|
||||||
if number == 0 {
|
|
||||||
return self.names[0].parse().unwrap();
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut power = 6;
|
|
||||||
|
|
||||||
loop {
|
|
||||||
let digit = number / self.names.len().pow(power) as u64;
|
|
||||||
if !(result.is_empty() && digit == 0) {
|
|
||||||
result.push(&self.names[digit as usize]);
|
|
||||||
}
|
|
||||||
number -= digit * self.names.len().pow(power) as u64;
|
|
||||||
if power > 0 {
|
|
||||||
power -= 1;
|
|
||||||
} else if power == 0 || number == 0 {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
result.join("-")
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn to_u64(&self, pasta_id: &str) -> Result<u64, &str> {
|
|
||||||
let mut result: u64 = 0;
|
|
||||||
|
|
||||||
let names: Vec<&str> = pasta_id.split('-').collect();
|
|
||||||
|
|
||||||
let mut pow = names.len();
|
|
||||||
for name in names {
|
|
||||||
pow -= 1;
|
|
||||||
let name_index = self.names.iter().position(|r| r == name);
|
|
||||||
match name_index {
|
|
||||||
None => return Err("Failed to convert animal name to u64!"),
|
|
||||||
Some(_) => {
|
|
||||||
result += (name_index.unwrap() * self.names.len().pow(pow as u32)) as u64
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(result)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Default for PastaIdConverter {
|
|
||||||
fn default() -> Self {
|
|
||||||
Self::new()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ pub fn html_highlight(text: &str, extension: &str) -> String {
|
||||||
|
|
||||||
let syntax = ps
|
let syntax = ps
|
||||||
.find_syntax_by_extension(extension)
|
.find_syntax_by_extension(extension)
|
||||||
.or_else(|| Option::from(ps.find_syntax_plain_text()))
|
.or(Option::from(ps.find_syntax_plain_text()))
|
||||||
.unwrap();
|
.unwrap();
|
||||||
let mut h = HighlightLines::new(syntax, &ts.themes["InspiredGitHub"]);
|
let mut h = HighlightLines::new(syntax, &ts.themes["InspiredGitHub"]);
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ pub fn html_highlight(text: &str, extension: &str) -> String {
|
||||||
|
|
||||||
let mut highlighted_content2: String = String::from("");
|
let mut highlighted_content2: String = String::from("");
|
||||||
for line in highlighted_content.lines() {
|
for line in highlighted_content.lines() {
|
||||||
highlighted_content2 += &*format!("<code-line>{line}</code-line>\n");
|
highlighted_content2 += &*format!("<code-line>{}</code-line>\n", line);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Rewrite colours to ones that are compatible with water.css and both light/dark modes
|
// Rewrite colours to ones that are compatible with water.css and both light/dark modes
|
||||||
|
@ -33,5 +33,5 @@ pub fn html_highlight(text: &str, extension: &str) -> String {
|
||||||
highlighted_content2 =
|
highlighted_content2 =
|
||||||
highlighted_content2.replace("style=\"color:#183691;\"", "style=\"color:blue;\"");
|
highlighted_content2.replace("style=\"color:#183691;\"", "style=\"color:blue;\"");
|
||||||
|
|
||||||
highlighted_content2
|
return highlighted_content2;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,81 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
|
|
||||||
<svg
|
|
||||||
width="31.999998"
|
|
||||||
height="31.999998"
|
|
||||||
viewBox="0 0 8.4666661 8.4666661"
|
|
||||||
version="1.1"
|
|
||||||
id="svg5"
|
|
||||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
|
||||||
sodipodi:docname="logo.svg"
|
|
||||||
inkscape:export-filename="logo.png"
|
|
||||||
inkscape:export-xdpi="384"
|
|
||||||
inkscape:export-ydpi="384"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview7"
|
|
||||||
pagecolor="#4a4a55"
|
|
||||||
bordercolor="#eeeeee"
|
|
||||||
borderopacity="1"
|
|
||||||
inkscape:showpageshadow="0"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#505050"
|
|
||||||
inkscape:document-units="mm"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="19.556004"
|
|
||||||
inkscape:cx="6.0339524"
|
|
||||||
inkscape:cy="16.721207"
|
|
||||||
inkscape:window-width="2560"
|
|
||||||
inkscape:window-height="1036"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="44"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="layer1">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid182"
|
|
||||||
visible="true" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<defs
|
|
||||||
id="defs2" />
|
|
||||||
<g
|
|
||||||
inkscape:label="Layer 1"
|
|
||||||
inkscape:groupmode="layer"
|
|
||||||
id="layer1">
|
|
||||||
<g
|
|
||||||
id="g14438"
|
|
||||||
inkscape:label="Box">
|
|
||||||
<path
|
|
||||||
style="color:#000000;fill:#f7f7ff;-inkscape-stroke:none"
|
|
||||||
d="M 1.984375,3.8066406 V 6.2207031 L 4.2324219,7.34375 4.2929687,7.3144531 6.4824219,6.2207031 V 3.8066406 l -2.25,1.125 z m 0.2636719,0.4296875 1.984375,0.9921875 1.984375,-0.9921875 V 6.0566406 L 4.2324219,7.0488281 2.2480469,6.0566406 Z"
|
|
||||||
id="path2056" />
|
|
||||||
<path
|
|
||||||
id="path3512"
|
|
||||||
style="color:#000000;fill:#f7f7ff;fill-opacity:1;-inkscape-stroke:none"
|
|
||||||
d="M 4.3651082,5.3087199 4.2322998,5.3748657 4.1015584,5.3097534 v 1.5260051 l 0.1328085,0.066663 0.1307413,-0.065629 z" />
|
|
||||||
</g>
|
|
||||||
<g
|
|
||||||
id="g18197"
|
|
||||||
inkscape:label="Cat"
|
|
||||||
style="display:inline">
|
|
||||||
<path
|
|
||||||
id="path14440"
|
|
||||||
style="color:#000000;display:inline;fill:#f7f7ff;fill-opacity:1;-inkscape-stroke:none"
|
|
||||||
d="M 4.6663818,2.8716593 4.3862956,3.0959351 h 0.045475 L 5.4063883,3.291272 5.709729,4.0462646 5.9464071,3.9279256 5.5996582,3.058728 Z M 2.6199951,2.9434896 2.4618652,3.8989868 2.7088786,4.0230103 2.8571899,3.1331421 Z" />
|
|
||||||
<path
|
|
||||||
style="color:#000000;fill:#f7f7ff;-inkscape-stroke:none"
|
|
||||||
d="m 2.1308594,1.0234375 0.2773437,1.109375 v 0.4707031 l 1.1894532,0.953125 0.083984,-0.066406 1.1074219,-0.8867188 V 2.1328125 L 5.0664062,1.0234375 3.9902344,1.5605469 H 3.2070313 Z M 2.5273438,1.5175781 3.1445313,1.8261719 H 4.0527344 L 4.6699219,1.5175781 4.5234375,2.0996094 V 2.4765625 L 3.5976563,3.2167969 2.671875,2.4765625 V 2.0996094 Z"
|
|
||||||
id="path14903" />
|
|
||||||
</g>
|
|
||||||
<path
|
|
||||||
id="path22977"
|
|
||||||
style="color:#000000;fill:#f7f7ff;fill-opacity:1;-inkscape-stroke:none"
|
|
||||||
d="M 5.94434,3.5646403 6.0657796,3.8684977 6.3086589,3.7470581 Z m -3.5723918,0.074414 -0.2149739,0.1074869 0.181901,0.090951 z"
|
|
||||||
sodipodi:nodetypes="cccccccc" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 3.3 KiB |
Binary file not shown.
Before Width: | Height: | Size: 3.1 KiB |
|
@ -1,81 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
|
|
||||||
<svg
|
|
||||||
width="32"
|
|
||||||
height="32"
|
|
||||||
viewBox="0 0 8.4666666 8.4666666"
|
|
||||||
version="1.1"
|
|
||||||
id="svg5"
|
|
||||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
|
||||||
sodipodi:docname="microbin-logo.svg"
|
|
||||||
inkscape:export-filename="microbin-logo-exp.svg"
|
|
||||||
inkscape:export-xdpi="144"
|
|
||||||
inkscape:export-ydpi="144"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview7"
|
|
||||||
pagecolor="#4a4a55"
|
|
||||||
bordercolor="#eeeeee"
|
|
||||||
borderopacity="1"
|
|
||||||
inkscape:showpageshadow="0"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#505050"
|
|
||||||
inkscape:document-units="mm"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="19.556004"
|
|
||||||
inkscape:cx="6.0339524"
|
|
||||||
inkscape:cy="16.721207"
|
|
||||||
inkscape:window-width="2560"
|
|
||||||
inkscape:window-height="1036"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="44"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="layer1">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid182"
|
|
||||||
visible="true" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<defs
|
|
||||||
id="defs2" />
|
|
||||||
<g
|
|
||||||
inkscape:label="Layer 1"
|
|
||||||
inkscape:groupmode="layer"
|
|
||||||
id="layer1">
|
|
||||||
<g
|
|
||||||
id="g14438"
|
|
||||||
inkscape:label="Box">
|
|
||||||
<path
|
|
||||||
style="color:#000000;fill:#f7f7ff;-inkscape-stroke:none"
|
|
||||||
d="M 1.984375,3.8066406 V 6.2207031 L 4.2324219,7.34375 4.2929687,7.3144531 6.4824219,6.2207031 V 3.8066406 l -2.25,1.125 z m 0.2636719,0.4296875 1.984375,0.9921875 1.984375,-0.9921875 V 6.0566406 L 4.2324219,7.0488281 2.2480469,6.0566406 Z"
|
|
||||||
id="path2056" />
|
|
||||||
<path
|
|
||||||
id="path3512"
|
|
||||||
style="color:#000000;fill:#f7f7ff;-inkscape-stroke:none;fill-opacity:1"
|
|
||||||
d="M 4.3651082 5.3087199 L 4.2322998 5.3748657 L 4.1015584 5.3097534 L 4.1015584 6.8357585 L 4.2343669 6.9024211 L 4.3651082 6.836792 L 4.3651082 5.3087199 z " />
|
|
||||||
</g>
|
|
||||||
<g
|
|
||||||
id="g18197"
|
|
||||||
inkscape:label="Cat"
|
|
||||||
style="display:inline">
|
|
||||||
<path
|
|
||||||
id="path14440"
|
|
||||||
style="color:#000000;display:inline;fill:#f7f7ff;-inkscape-stroke:none;fill-opacity:1"
|
|
||||||
d="M 4.6663818,2.8716593 4.3862956,3.0959351 h 0.045475 L 5.4063883,3.291272 5.709729,4.0462646 5.9464071,3.9279256 5.5996582,3.058728 Z M 2.6199951,2.9434896 2.4618652,3.8989868 2.7088786,4.0230103 2.8571899,3.1331421 Z" />
|
|
||||||
<path
|
|
||||||
style="color:#000000;fill:#f7f7ff;-inkscape-stroke:none"
|
|
||||||
d="m 2.1308594,1.0234375 0.2773437,1.109375 v 0.4707031 l 1.1894532,0.953125 0.083984,-0.066406 1.1074219,-0.8867188 V 2.1328125 L 5.0664062,1.0234375 3.9902344,1.5605469 H 3.2070313 Z M 2.5273438,1.5175781 3.1445313,1.8261719 H 4.0527344 L 4.6699219,1.5175781 4.5234375,2.0996094 V 2.4765625 L 3.5976563,3.2167969 2.671875,2.4765625 V 2.0996094 Z"
|
|
||||||
id="path14903" />
|
|
||||||
</g>
|
|
||||||
<path
|
|
||||||
id="path22977"
|
|
||||||
style="color:#000000;fill:#f7f7ff;-inkscape-stroke:none;fill-opacity:1"
|
|
||||||
d="M 5.94434,3.5646403 6.0657796,3.8684977 6.3086589,3.7470581 Z m -3.5723918,0.074414 -0.2149739,0.1074869 0.181901,0.090951 z"
|
|
||||||
sodipodi:nodetypes="cccccccc" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 3.3 KiB |
|
@ -1,626 +0,0 @@
|
||||||
/*
|
|
||||||
* This is (basically) water.css.
|
|
||||||
*
|
|
||||||
* repo: https://github.com/kognise/water.css
|
|
||||||
*
|
|
||||||
* The license:
|
|
||||||
*
|
|
||||||
* The MIT License (MIT)
|
|
||||||
*
|
|
||||||
* Copyright © 2019 Kognise
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
* of this software and associated documentation files (the “Software”), to deal
|
|
||||||
* in the Software without restriction, including without limitation the rights
|
|
||||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
* copies of the Software, and to permit persons to whom the Software is
|
|
||||||
* furnished to do so, subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be included in all
|
|
||||||
* copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
* SOFTWARE.
|
|
||||||
*/
|
|
||||||
:root {
|
|
||||||
--background-body:#4a4a55;
|
|
||||||
--background:#383844;
|
|
||||||
--background-alt:#242438;
|
|
||||||
--selection:#23bf7c;
|
|
||||||
--text-main:#dfdfef;
|
|
||||||
--text-bright:#f7f7ff;
|
|
||||||
--text-muted:#878797;
|
|
||||||
--links:#28db8f;
|
|
||||||
--focus:#299465df;
|
|
||||||
--border:#676773;
|
|
||||||
--code:var(--text-main);
|
|
||||||
--animation-duration:0.1s;
|
|
||||||
--button-base:#299465;
|
|
||||||
--button-hover:#23bf7c;
|
|
||||||
--scrollbar-thumb:var(--button-hover);
|
|
||||||
--scrollbar-thumb-hover:#000;
|
|
||||||
--form-placeholder:#a9a9a9;
|
|
||||||
--form-text:#fff;
|
|
||||||
--variable:#d941e2;
|
|
||||||
--highlight:#efdb43;
|
|
||||||
--select-arrow:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='63' width='117' fill='%23efefef'%3E%3Cpath d='M115 2c-1-2-4-2-5 0L59 53 7 2a4 4 0 00-5 5l54 54 2 2 3-2 54-54c2-1 2-4 0-5z'/%3E%3C/svg%3E")
|
|
||||||
}
|
|
||||||
html {
|
|
||||||
scrollbar-color:#040a0f #202b38;
|
|
||||||
scrollbar-color:var(--scrollbar-thumb) var(--background-body);
|
|
||||||
scrollbar-width:thin
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Segoe UI Emoji,Apple Color Emoji,Noto Color Emoji,sans-serif;
|
|
||||||
line-height:1.4;
|
|
||||||
max-width:800px;
|
|
||||||
margin:20px auto;
|
|
||||||
padding:0 10px;
|
|
||||||
word-wrap:break-word;
|
|
||||||
color:#dbdbdb;
|
|
||||||
color:var(--text-main);
|
|
||||||
background:#202b38;
|
|
||||||
background:var(--background-body);
|
|
||||||
text-rendering:optimizeLegibility
|
|
||||||
}
|
|
||||||
button,
|
|
||||||
input,
|
|
||||||
textarea {
|
|
||||||
transition:background-color .1s linear,border-color .1s linear,color .1s linear,box-shadow .1s linear,transform .1s ease;
|
|
||||||
transition:background-color var(--animation-duration) linear,border-color var(--animation-duration) linear,color var(--animation-duration) linear,box-shadow var(--animation-duration) linear,transform var(--animation-duration) ease
|
|
||||||
}
|
|
||||||
h1 {
|
|
||||||
font-size:2.2em;
|
|
||||||
margin-top:0
|
|
||||||
}
|
|
||||||
h1,
|
|
||||||
h2,
|
|
||||||
h3,
|
|
||||||
h4,
|
|
||||||
h5,
|
|
||||||
h6 {
|
|
||||||
margin-bottom:12px;
|
|
||||||
margin-top:24px
|
|
||||||
}
|
|
||||||
h1,
|
|
||||||
h2,
|
|
||||||
h3,
|
|
||||||
h4,
|
|
||||||
h5,
|
|
||||||
h6,
|
|
||||||
strong {
|
|
||||||
color:#fff;
|
|
||||||
color:var(--text-bright)
|
|
||||||
}
|
|
||||||
b,
|
|
||||||
h1,
|
|
||||||
h2,
|
|
||||||
h3,
|
|
||||||
h4,
|
|
||||||
h5,
|
|
||||||
h6,
|
|
||||||
strong,
|
|
||||||
th {
|
|
||||||
font-weight:600
|
|
||||||
}
|
|
||||||
q:after,
|
|
||||||
q:before {
|
|
||||||
content:none
|
|
||||||
}
|
|
||||||
blockquote,
|
|
||||||
q {
|
|
||||||
border-left:4px solid rgba(0,150,191,.67);
|
|
||||||
border-left:4px solid var(--focus);
|
|
||||||
margin:1.5em 0;
|
|
||||||
padding:.5em 1em;
|
|
||||||
font-style:italic
|
|
||||||
}
|
|
||||||
blockquote>footer {
|
|
||||||
font-style:normal;
|
|
||||||
border:0
|
|
||||||
}
|
|
||||||
address,
|
|
||||||
blockquote cite {
|
|
||||||
font-style:normal
|
|
||||||
}
|
|
||||||
a[href^=mailto\:]:before {
|
|
||||||
content:"📧 "
|
|
||||||
}
|
|
||||||
a[href^=tel\:]:before {
|
|
||||||
content:"📞 "
|
|
||||||
}
|
|
||||||
a[href^=sms\:]:before {
|
|
||||||
content:"💬 "
|
|
||||||
}
|
|
||||||
mark {
|
|
||||||
background-color:#efdb43;
|
|
||||||
background-color:var(--highlight);
|
|
||||||
border-radius:2px;
|
|
||||||
padding:0 2px;
|
|
||||||
color:#000
|
|
||||||
}
|
|
||||||
a>code,
|
|
||||||
a>strong {
|
|
||||||
color:inherit
|
|
||||||
}
|
|
||||||
button,
|
|
||||||
input[type=button],
|
|
||||||
input[type=checkbox],
|
|
||||||
input[type=radio],
|
|
||||||
input[type=range],
|
|
||||||
input[type=reset],
|
|
||||||
input[type=submit],
|
|
||||||
select {
|
|
||||||
cursor:pointer
|
|
||||||
}
|
|
||||||
input,
|
|
||||||
select {
|
|
||||||
display:block
|
|
||||||
}
|
|
||||||
[type=checkbox],
|
|
||||||
[type=radio] {
|
|
||||||
display:initial
|
|
||||||
}
|
|
||||||
button,
|
|
||||||
input,
|
|
||||||
select,
|
|
||||||
textarea {
|
|
||||||
color:#fff;
|
|
||||||
color:var(--form-text);
|
|
||||||
background-color:#161f27;
|
|
||||||
background-color:var(--background);
|
|
||||||
font-family:inherit;
|
|
||||||
font-size:inherit;
|
|
||||||
margin-right:6px;
|
|
||||||
margin-bottom:6px;
|
|
||||||
padding:10px;
|
|
||||||
border:none;
|
|
||||||
border-radius:6px;
|
|
||||||
outline:none
|
|
||||||
}
|
|
||||||
button,
|
|
||||||
input[type=button],
|
|
||||||
input[type=reset],
|
|
||||||
input[type=submit] {
|
|
||||||
background-color:#0c151c;
|
|
||||||
background-color:var(--button-base);
|
|
||||||
padding-right:30px;
|
|
||||||
padding-left:30px
|
|
||||||
}
|
|
||||||
button:hover,
|
|
||||||
input[type=button]:hover,
|
|
||||||
input[type=reset]:hover,
|
|
||||||
input[type=submit]:hover {
|
|
||||||
background:#040a0f;
|
|
||||||
background:var(--button-hover)
|
|
||||||
}
|
|
||||||
input[type=color] {
|
|
||||||
min-height:2rem;
|
|
||||||
padding:8px;
|
|
||||||
cursor:pointer
|
|
||||||
}
|
|
||||||
input[type=checkbox],
|
|
||||||
input[type=radio] {
|
|
||||||
height:1em;
|
|
||||||
width:1em
|
|
||||||
}
|
|
||||||
input[type=radio] {
|
|
||||||
border-radius:100%
|
|
||||||
}
|
|
||||||
input {
|
|
||||||
vertical-align:top
|
|
||||||
}
|
|
||||||
label {
|
|
||||||
vertical-align:middle;
|
|
||||||
margin-bottom:4px;
|
|
||||||
display:inline-block
|
|
||||||
}
|
|
||||||
button,
|
|
||||||
input:not([type=checkbox]):not([type=radio]),
|
|
||||||
input[type=range],
|
|
||||||
select,
|
|
||||||
textarea {
|
|
||||||
-webkit-appearance:none
|
|
||||||
}
|
|
||||||
textarea {
|
|
||||||
display:block;
|
|
||||||
margin-right:0;
|
|
||||||
box-sizing:border-box;
|
|
||||||
resize:vertical
|
|
||||||
}
|
|
||||||
textarea:not([cols]) {
|
|
||||||
width:100%
|
|
||||||
}
|
|
||||||
textarea:not([rows]) {
|
|
||||||
min-height:40px;
|
|
||||||
height:140px
|
|
||||||
}
|
|
||||||
select {
|
|
||||||
background:#161f27 url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='63' width='117' fill='%23efefef'%3E%3Cpath d='M115 2c-1-2-4-2-5 0L59 53 7 2a4 4 0 00-5 5l54 54 2 2 3-2 54-54c2-1 2-4 0-5z'/%3E%3C/svg%3E") calc(100% - 12px) 50%/12px no-repeat;
|
|
||||||
background:var(--background) var(--select-arrow) calc(100% - 12px) 50%/12px no-repeat;
|
|
||||||
padding-right:35px
|
|
||||||
}
|
|
||||||
select::-ms-expand {
|
|
||||||
display:none
|
|
||||||
}
|
|
||||||
select[multiple] {
|
|
||||||
padding-right:10px;
|
|
||||||
background-image:none;
|
|
||||||
overflow-y:auto
|
|
||||||
}
|
|
||||||
button:focus,
|
|
||||||
input:focus,
|
|
||||||
select:focus,
|
|
||||||
textarea:focus {
|
|
||||||
box-shadow:0 0 0 2px rgba(0,150,191,.67);
|
|
||||||
box-shadow:0 0 0 2px var(--focus)
|
|
||||||
}
|
|
||||||
button:active,
|
|
||||||
input[type=button]:active,
|
|
||||||
input[type=checkbox]:active,
|
|
||||||
input[type=radio]:active,
|
|
||||||
input[type=range]:active,
|
|
||||||
input[type=reset]:active,
|
|
||||||
input[type=submit]:active {
|
|
||||||
transform:translateY(2px)
|
|
||||||
}
|
|
||||||
button:disabled,
|
|
||||||
input:disabled,
|
|
||||||
select:disabled,
|
|
||||||
textarea:disabled {
|
|
||||||
cursor:not-allowed;
|
|
||||||
opacity:.5
|
|
||||||
}
|
|
||||||
::-moz-placeholder {
|
|
||||||
color:#a9a9a9;
|
|
||||||
color:var(--form-placeholder)
|
|
||||||
}
|
|
||||||
:-ms-input-placeholder {
|
|
||||||
color:#a9a9a9;
|
|
||||||
color:var(--form-placeholder)
|
|
||||||
}
|
|
||||||
::-ms-input-placeholder {
|
|
||||||
color:#a9a9a9;
|
|
||||||
color:var(--form-placeholder)
|
|
||||||
}
|
|
||||||
::placeholder {
|
|
||||||
color:#a9a9a9;
|
|
||||||
color:var(--form-placeholder)
|
|
||||||
}
|
|
||||||
fieldset {
|
|
||||||
border:1px solid rgba(0,150,191,.67);
|
|
||||||
border:1px solid var(--focus);
|
|
||||||
border-radius:6px;
|
|
||||||
margin:0 0 12px;
|
|
||||||
padding:10px
|
|
||||||
}
|
|
||||||
legend {
|
|
||||||
font-size:.9em;
|
|
||||||
font-weight:600
|
|
||||||
}
|
|
||||||
input[type=range] {
|
|
||||||
margin:10px 0;
|
|
||||||
padding:10px 0;
|
|
||||||
background:transparent
|
|
||||||
}
|
|
||||||
input[type=range]:focus {
|
|
||||||
outline:none
|
|
||||||
}
|
|
||||||
input[type=range]::-webkit-slider-runnable-track {
|
|
||||||
width:100%;
|
|
||||||
height:9.5px;
|
|
||||||
-webkit-transition:.2s;
|
|
||||||
transition:.2s;
|
|
||||||
background:#161f27;
|
|
||||||
background:var(--background);
|
|
||||||
border-radius:3px
|
|
||||||
}
|
|
||||||
input[type=range]::-webkit-slider-thumb {
|
|
||||||
box-shadow:0 1px 1px #000,0 0 1px #0d0d0d;
|
|
||||||
height:20px;
|
|
||||||
width:20px;
|
|
||||||
border-radius:50%;
|
|
||||||
background:#526980;
|
|
||||||
background:var(--border);
|
|
||||||
-webkit-appearance:none;
|
|
||||||
margin-top:-7px
|
|
||||||
}
|
|
||||||
input[type=range]:focus::-webkit-slider-runnable-track {
|
|
||||||
background:#161f27;
|
|
||||||
background:var(--background)
|
|
||||||
}
|
|
||||||
input[type=range]::-moz-range-track {
|
|
||||||
width:100%;
|
|
||||||
height:9.5px;
|
|
||||||
-moz-transition:.2s;
|
|
||||||
transition:.2s;
|
|
||||||
background:#161f27;
|
|
||||||
background:var(--background);
|
|
||||||
border-radius:3px
|
|
||||||
}
|
|
||||||
input[type=range]::-moz-range-thumb {
|
|
||||||
box-shadow:1px 1px 1px #000,0 0 1px #0d0d0d;
|
|
||||||
height:20px;
|
|
||||||
width:20px;
|
|
||||||
border-radius:50%;
|
|
||||||
background:#526980;
|
|
||||||
background:var(--border)
|
|
||||||
}
|
|
||||||
input[type=range]::-ms-track {
|
|
||||||
width:100%;
|
|
||||||
height:9.5px;
|
|
||||||
background:transparent;
|
|
||||||
border-color:transparent;
|
|
||||||
border-width:16px 0;
|
|
||||||
color:transparent
|
|
||||||
}
|
|
||||||
input[type=range]::-ms-fill-lower,
|
|
||||||
input[type=range]::-ms-fill-upper {
|
|
||||||
background:#161f27;
|
|
||||||
background:var(--background);
|
|
||||||
border:.2px solid #010101;
|
|
||||||
border-radius:3px;
|
|
||||||
box-shadow:1px 1px 1px #000,0 0 1px #0d0d0d
|
|
||||||
}
|
|
||||||
input[type=range]::-ms-thumb {
|
|
||||||
box-shadow:1px 1px 1px #000,0 0 1px #0d0d0d;
|
|
||||||
border:1px solid #000;
|
|
||||||
height:20px;
|
|
||||||
width:20px;
|
|
||||||
border-radius:50%;
|
|
||||||
background:#526980;
|
|
||||||
background:var(--border)
|
|
||||||
}
|
|
||||||
input[type=range]:focus::-ms-fill-lower,
|
|
||||||
input[type=range]:focus::-ms-fill-upper {
|
|
||||||
background:#161f27;
|
|
||||||
background:var(--background)
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
text-decoration:none;
|
|
||||||
color:#41adff;
|
|
||||||
color:var(--links)
|
|
||||||
}
|
|
||||||
a:hover {
|
|
||||||
text-decoration:underline
|
|
||||||
}
|
|
||||||
code,
|
|
||||||
samp,
|
|
||||||
time {
|
|
||||||
background:#161f27;
|
|
||||||
background:var(--background);
|
|
||||||
color:#ffbe85;
|
|
||||||
color:var(--code);
|
|
||||||
padding:2.5px 5px;
|
|
||||||
border-radius:6px;
|
|
||||||
font-size:1em
|
|
||||||
}
|
|
||||||
pre>code {
|
|
||||||
padding:10px;
|
|
||||||
display:block;
|
|
||||||
overflow-x:auto
|
|
||||||
}
|
|
||||||
var {
|
|
||||||
color:#d941e2;
|
|
||||||
color:var(--variable);
|
|
||||||
font-style:normal;
|
|
||||||
font-family:monospace
|
|
||||||
}
|
|
||||||
kbd {
|
|
||||||
background:#161f27;
|
|
||||||
background:var(--background);
|
|
||||||
border:1px solid #526980;
|
|
||||||
border:1px solid var(--border);
|
|
||||||
border-radius:2px;
|
|
||||||
color:#dbdbdb;
|
|
||||||
color:var(--text-main);
|
|
||||||
padding:2px 4px
|
|
||||||
}
|
|
||||||
img,
|
|
||||||
video {
|
|
||||||
max-width:100%;
|
|
||||||
height:auto
|
|
||||||
}
|
|
||||||
hr {
|
|
||||||
border:none;
|
|
||||||
border-top:1px solid #526980;
|
|
||||||
border-top:1px solid var(--border)
|
|
||||||
}
|
|
||||||
table {
|
|
||||||
border-collapse:collapse;
|
|
||||||
margin-bottom:10px;
|
|
||||||
width:100%;
|
|
||||||
table-layout:fixed
|
|
||||||
}
|
|
||||||
table caption,
|
|
||||||
td,
|
|
||||||
th {
|
|
||||||
text-align:left
|
|
||||||
}
|
|
||||||
td,
|
|
||||||
th {
|
|
||||||
padding:6px;
|
|
||||||
vertical-align:top;
|
|
||||||
word-wrap:break-word
|
|
||||||
}
|
|
||||||
thead {
|
|
||||||
border-bottom:1px solid #526980;
|
|
||||||
border-bottom:1px solid var(--border)
|
|
||||||
}
|
|
||||||
tfoot {
|
|
||||||
border-top:1px solid #526980;
|
|
||||||
border-top:1px solid var(--border)
|
|
||||||
}
|
|
||||||
tbody tr:nth-child(2n) {
|
|
||||||
background-color:#161f27;
|
|
||||||
background-color:var(--background)
|
|
||||||
}
|
|
||||||
tbody tr:nth-child(2n) button {
|
|
||||||
background-color:#1a242f;
|
|
||||||
background-color:var(--background-alt)
|
|
||||||
}
|
|
||||||
tbody tr:nth-child(2n) button:hover {
|
|
||||||
background-color:#202b38;
|
|
||||||
background-color:var(--background-body)
|
|
||||||
}
|
|
||||||
::-webkit-scrollbar {
|
|
||||||
height:10px;
|
|
||||||
width:10px
|
|
||||||
}
|
|
||||||
::-webkit-scrollbar-track {
|
|
||||||
background:#161f27;
|
|
||||||
background:var(--background);
|
|
||||||
border-radius:6px
|
|
||||||
}
|
|
||||||
::-webkit-scrollbar-thumb {
|
|
||||||
background:#040a0f;
|
|
||||||
background:var(--scrollbar-thumb);
|
|
||||||
border-radius:6px
|
|
||||||
}
|
|
||||||
::-webkit-scrollbar-thumb:hover {
|
|
||||||
background:#000;
|
|
||||||
background:var(--scrollbar-thumb-hover)
|
|
||||||
}
|
|
||||||
::-moz-selection {
|
|
||||||
background-color:#1c76c5;
|
|
||||||
background-color:var(--selection);
|
|
||||||
color:#fff;
|
|
||||||
color:var(--text-bright)
|
|
||||||
}
|
|
||||||
::selection {
|
|
||||||
background-color:#1c76c5;
|
|
||||||
background-color:var(--selection);
|
|
||||||
color:#fff;
|
|
||||||
color:var(--text-bright)
|
|
||||||
}
|
|
||||||
details {
|
|
||||||
display:flex;
|
|
||||||
flex-direction:column;
|
|
||||||
align-items:flex-start;
|
|
||||||
background-color:#1a242f;
|
|
||||||
background-color:var(--background-alt);
|
|
||||||
padding:10px 10px 0;
|
|
||||||
margin:1em 0;
|
|
||||||
border-radius:6px;
|
|
||||||
overflow:hidden
|
|
||||||
}
|
|
||||||
details[open] {
|
|
||||||
padding:10px
|
|
||||||
}
|
|
||||||
details>:last-child {
|
|
||||||
margin-bottom:0
|
|
||||||
}
|
|
||||||
details[open] summary {
|
|
||||||
margin-bottom:10px
|
|
||||||
}
|
|
||||||
summary {
|
|
||||||
display:list-item;
|
|
||||||
background-color:#161f27;
|
|
||||||
background-color:var(--background);
|
|
||||||
padding:10px;
|
|
||||||
margin:-10px -10px 0;
|
|
||||||
cursor:pointer;
|
|
||||||
outline:none
|
|
||||||
}
|
|
||||||
summary:focus,
|
|
||||||
summary:hover {
|
|
||||||
text-decoration:underline
|
|
||||||
}
|
|
||||||
details>:not(summary) {
|
|
||||||
margin-top:0
|
|
||||||
}
|
|
||||||
summary::-webkit-details-marker {
|
|
||||||
color:#dbdbdb;
|
|
||||||
color:var(--text-main)
|
|
||||||
}
|
|
||||||
dialog {
|
|
||||||
background-color:#1a242f;
|
|
||||||
background-color:var(--background-alt);
|
|
||||||
color:#dbdbdb;
|
|
||||||
color:var(--text-main);
|
|
||||||
border-radius:6px;
|
|
||||||
border:#526980;
|
|
||||||
border-color:var(--border);
|
|
||||||
padding:10px 30px
|
|
||||||
}
|
|
||||||
dialog>header:first-child {
|
|
||||||
background-color:#161f27;
|
|
||||||
background-color:var(--background);
|
|
||||||
border-radius:6px 6px 0 0;
|
|
||||||
margin:-10px -30px 10px;
|
|
||||||
padding:10px;
|
|
||||||
text-align:center
|
|
||||||
}
|
|
||||||
dialog::-webkit-backdrop {
|
|
||||||
background:rgba(0,0,0,.61);
|
|
||||||
-webkit-backdrop-filter:blur(4px);
|
|
||||||
backdrop-filter:blur(4px)
|
|
||||||
}
|
|
||||||
dialog::backdrop {
|
|
||||||
background:rgba(0,0,0,.61);
|
|
||||||
-webkit-backdrop-filter:blur(4px);
|
|
||||||
backdrop-filter:blur(4px)
|
|
||||||
}
|
|
||||||
footer {
|
|
||||||
border-top:1px solid #526980;
|
|
||||||
border-top:1px solid var(--border);
|
|
||||||
padding-top:10px;
|
|
||||||
color:#a9b1ba;
|
|
||||||
color:var(--text-muted)
|
|
||||||
}
|
|
||||||
body>footer {
|
|
||||||
margin-top:40px
|
|
||||||
}
|
|
||||||
@media print {
|
|
||||||
body,
|
|
||||||
button,
|
|
||||||
code,
|
|
||||||
details,
|
|
||||||
input,
|
|
||||||
pre,
|
|
||||||
summary,
|
|
||||||
textarea {
|
|
||||||
background-color:#fff
|
|
||||||
}
|
|
||||||
button,
|
|
||||||
input,
|
|
||||||
textarea {
|
|
||||||
border:1px solid #000
|
|
||||||
}
|
|
||||||
body,
|
|
||||||
button,
|
|
||||||
code,
|
|
||||||
footer,
|
|
||||||
h1,
|
|
||||||
h2,
|
|
||||||
h3,
|
|
||||||
h4,
|
|
||||||
h5,
|
|
||||||
h6,
|
|
||||||
input,
|
|
||||||
pre,
|
|
||||||
strong,
|
|
||||||
summary,
|
|
||||||
textarea {
|
|
||||||
color:#000
|
|
||||||
}
|
|
||||||
summary::marker {
|
|
||||||
color:#000
|
|
||||||
}
|
|
||||||
summary::-webkit-details-marker {
|
|
||||||
color:#000
|
|
||||||
}
|
|
||||||
tbody tr:nth-child(2n) {
|
|
||||||
background-color:#f2f2f2
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
color:#00f;
|
|
||||||
text-decoration:underline
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
{% include "header.html" %}
|
{% include "header.html" %}
|
||||||
<br>
|
<br>
|
||||||
<h2>{{ status_code.as_u16() }}</h2>
|
<h2>404</h2>
|
||||||
<b>{{ status_code.canonical_reason().unwrap_or("Unknown error") }}</b>
|
<b>Not Found</b>
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
<a href="{{ args.public_path }}/"> Go Home</a>
|
<a href="/" > Go Home</a>
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
{% include "footer.html" %}
|
{% include "footer.html" %}
|
||||||
|
|
|
@ -1,18 +1,17 @@
|
||||||
|
|
||||||
{% if !args.hide_footer %}
|
{% if !args.hide_footer %}
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<p style="font-size: smaller">
|
<p style="font-size: smaller">
|
||||||
{% if args.footer_text.as_ref().is_none() %}
|
{% if args.footer_text.as_ref().is_none() %}
|
||||||
<b>Karton</b> by Schrottkatze, based on <a href="https://microbin.eu">MicroBin</a> by Dániel Szabó and the FOSS Community.
|
MicroBin by Dániel Szabó. Fork me on <a href="https://github.com/szabodanika/microbin">GitHub</a>!
|
||||||
Let's keep the Web <b>compact</b>, <b>accessible</b> and <b>humane</b>!
|
Let's keep the Web <b>compact</b>, <b>accessible</b> and <b>humane</b>!
|
||||||
{%- else %}
|
{%- else %}
|
||||||
{{ args.footer_text.as_ref().unwrap() }}
|
{{ args.footer_text.as_ref().unwrap() }}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
</html>
|
||||||
</html>
|
|
||||||
|
|
|
@ -1,65 +1,60 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<title>{{ args.title }}</title>
|
{% if args.title.as_ref().is_none() %}
|
||||||
|
<title>MicroBin</title>
|
||||||
|
{%- else %}
|
||||||
|
<title>{{ args.title.as_ref().unwrap() }}</title>
|
||||||
|
{%- endif %}
|
||||||
|
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<link rel="icon" type="image/svg+xml" href="{{ args.public_path }}/static/favicon.svg">
|
|
||||||
{% if !args.pure_html %}
|
{% if !args.pure_html %}
|
||||||
{% if args.custom_css.as_ref().is_none() %}
|
<link rel="stylesheet" href="/static/water.css">
|
||||||
<link rel="stylesheet" href="{{ args.public_path }}/static/water.css">
|
|
||||||
{%- else %}
|
|
||||||
<link rel="stylesheet" href="{{ args.custom_css.as_ref().unwrap() }}">
|
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{%- endif %}
|
</head>
|
||||||
|
|
||||||
</head>
|
|
||||||
{% if args.wide %}
|
{% if args.wide %}
|
||||||
|
|
||||||
<body style="
|
<body style="
|
||||||
max-width: 1080px;
|
max-width: 1080;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
padding-left:0.5rem;
|
padding-left:0.5rem;
|
||||||
padding-right:0.5rem;
|
padding-right:0.5rem;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
">
|
">
|
||||||
|
{%- else %}
|
||||||
|
<body style="
|
||||||
|
max-width: 720;
|
||||||
|
margin: auto;
|
||||||
|
padding-left:0.5rem;
|
||||||
|
padding-right:0.5rem;
|
||||||
|
line-height: 1.5;
|
||||||
|
font-size: 1.1em;
|
||||||
|
">
|
||||||
|
{%- endif %}
|
||||||
|
<br>
|
||||||
|
|
||||||
|
{% if !args.hide_header %}
|
||||||
|
|
||||||
|
<b style="margin-right: 0.5rem">
|
||||||
|
|
||||||
|
{% if !args.hide_logo %}
|
||||||
|
<i><span style="font-size:2.2rem; margin-right:1rem">μ</span></i>
|
||||||
|
{%- endif %}
|
||||||
|
|
||||||
|
{% if args.title.as_ref().is_none() %}
|
||||||
|
MicroBin
|
||||||
{%- else %}
|
{%- else %}
|
||||||
|
{{ args.title.as_ref().unwrap() }}
|
||||||
|
{%- endif %}
|
||||||
|
</b>
|
||||||
|
|
||||||
<body style="
|
<a href="/" style="margin-right: 0.5rem; margin-left: 0.5rem">New Pasta</a>
|
||||||
max-width: 800px;
|
|
||||||
margin: auto;
|
|
||||||
padding-left:0.5rem;
|
|
||||||
padding-right:0.5rem;
|
|
||||||
line-height: 1.5;
|
|
||||||
font-size: 1.1em;
|
|
||||||
">
|
|
||||||
{%- endif %}
|
|
||||||
<br>
|
|
||||||
|
|
||||||
{% if !args.hide_header %}
|
<a href="/pastalist" style="margin-right: 0.5rem; margin-left: 0.5rem">Pasta List</a>
|
||||||
|
|
||||||
<b style="margin-right: 0.5rem">
|
<a href="/help" style="margin-right: 0.5rem; margin-left: 0.5rem">Help</a>
|
||||||
|
|
||||||
{% if !args.hide_logo %}
|
<hr>
|
||||||
<a href="{{ args.public_path }}/"><img
|
|
||||||
width=48
|
|
||||||
style="margin-bottom: -12px;"
|
|
||||||
src="{{ args.public_path }}/static/logo.png"
|
|
||||||
></a>
|
|
||||||
{%- endif %}
|
|
||||||
{{ args.title }}
|
|
||||||
</b>
|
|
||||||
|
|
||||||
<a href="{{ args.public_path }}/" style="margin-right: 0.5rem; margin-left: 0.5rem">New
|
{%- endif %}
|
||||||
</a>
|
|
||||||
|
|
||||||
<a href="{{ args.public_path }}/pastalist" style="margin-right: 0.5rem; margin-left: 0.5rem">List</a>
|
|
||||||
|
|
||||||
<a href="{{ args.public_path }}/info" style="margin-right: 0.5rem; margin-left: 0.5rem">Info</a>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
{%- endif %}
|
|
||||||
|
|
160
templates/help.html
Normal file
160
templates/help.html
Normal file
|
@ -0,0 +1,160 @@
|
||||||
|
{% include "header.html" %}
|
||||||
|
|
||||||
|
|
||||||
|
<h2 id="welcome-to-the-microbin-wiki-">Welcome to MicroBin!</h2>
|
||||||
|
<p>This page contains help regarding the installation, configuration and use of MicroBin. If you have questions that are not answered here, head to our <a href="https://github.com/szabodanika/microbin">GitHub repository</a>.</p>
|
||||||
|
<h2 id="1-usage">1 Usage</h2>
|
||||||
|
<h3 id="what-is-a-pasta-anyway-">What is a "pasta" anyway?</h3>
|
||||||
|
<p>In microbin, a pasta can be:</p>
|
||||||
|
<ul>
|
||||||
|
<li>A text that you want to paste from one machine to another, eg. some code</li>
|
||||||
|
<li>A file that you want to share, eg. a video that is too large for Discord, a zip with a code project in it or an image</li>
|
||||||
|
<li>A URL redirect</li>
|
||||||
|
</ul>
|
||||||
|
<h3 id="when-is-microbin-useful-">When is MicroBin useful?</h3>
|
||||||
|
<p>You can use MicroBin</p>
|
||||||
|
<ul>
|
||||||
|
<li>As a URL shortener/redirect service,</li>
|
||||||
|
<li>To send long texts to other people,</li>
|
||||||
|
<li>To send large files to other people,</li>
|
||||||
|
<li>To serve content on the web, eg. configuration files for testing, images, or any other file content using the Raw functionality,</li>
|
||||||
|
<li>To move files between your desktop and a server you access from the console,</li>
|
||||||
|
<li>As a "postbox" service where people can upload their files or texts, but they cannot see or remove what others sent you - just disable the pastalist page</li>
|
||||||
|
<li>To take notes! Simply create an editable pasta.</li>
|
||||||
|
</ul>
|
||||||
|
<p>...and many other things, why not get creative?</p>
|
||||||
|
<h3 id="creating-a-pasta">Creating a Pasta</h3>
|
||||||
|
<p>Navigate to the root of your server, for example <a href="https://microbin.myserver.com/">https://microbin.myserver.com/</a>. This should show you a form where you will at the very least see an expiration selector, a file attachment input, a content text field and a green save button. Depending on your configuration there miight also be a syntax highlight selector, an editable checkbox and a private ceckbox.</p>
|
||||||
|
<p>Use the expiration dropdown to choose how long you want your pasta to exist. When the selected time has expired, it will be removed from the server. The content can be any text, including plain text, code, html, even a URL. A URL is a special case, because when you open the pasta again, it will redirect you to that URL instead of showing it as a text. Entering content is optional, and so is the file attachment. If you want, you can even submit a pasta completely empty.</p>
|
||||||
|
<p>You will be redirected to the URL of the pasta, which will end with a few animal names. If you remember those animals, you can simply type them in on another machine and open your pasta elsewhere.</p>
|
||||||
|
<p>If you have editable pastas enabled and you check the editable checkbox, then later on there will be an option to change the text content of your pasta. Selecting the private checkbox will simply prevent your pasta to show up on the pasta list page, if that is enabled.</p>
|
||||||
|
<p>If you have syntax higlighting enabled, then select your language from the dropdown, or leave it as none if you just want to upload plain with no highlighting.</p>
|
||||||
|
<h3 id="listing-pastas">Listing Pastas</h3>
|
||||||
|
<p>If you have pasta listing enabled, then there is a pasta list option in the navigation bar, which will list all the pastas on the server in two groups: regular pastas and URL redirects (pastas containing nothing but a URL). If you have private pastas enabled, they will not show up here at all.</p>
|
||||||
|
<p>From the pasta list page, you will be able to view individual pastas by clicking on their animal identifiers on the lest, view their raw contrent by clicking on the Raw button, remove them, and if you have editable pastas enabled, then open them in edit view.</p>
|
||||||
|
<h3 id="use-microbin-from-the-console-with-curl">Use MicroBin from the console with cURL</h3>
|
||||||
|
<p>Simple text Pasta: <code>curl -d "expiration=10min&content=This is a test pasta" -X POST https://microbin.myserver.com/create</code></p>
|
||||||
|
<p>File contents: <code>curl -d "expiration=10min&content=$( < mypastafile.txt )" -X POST https://microbin.myserver.com/create</code></p>
|
||||||
|
<p>Available expiration options:
|
||||||
|
<code>1min</code>, <code>10min</code>, <code>1hour</code>, <code>24hour</code>, <code>1week</code>, <code>never</code></p>
|
||||||
|
<p>Use cURL to read the pasta: <code>curl https://microbin.myserver.com/rawpasta/fish-pony-crow</code>,</p>
|
||||||
|
<p>or to download the pasta: <code>curl https://microbin.myserver.com/rawpasta/fish-pony-crow > output.txt</code> (use /file instead of /rawpasta to download attached file).</p>
|
||||||
|
<h2 id="2-installation">2 Installation</h2>
|
||||||
|
<h3 id="from-cargo">From Cargo</h3>
|
||||||
|
<p>Install from Cargo:</p>
|
||||||
|
<p><code>cargo install microbin</code></p>
|
||||||
|
<p>Remember, MicroBin will create your database and file storage wherever you execute it. I recommend that you create a folder for it first and execute it there:</p>
|
||||||
|
<p><code>mkdir ~/microbin/</code></p>
|
||||||
|
<p><code>cd ~/microbin/</code></p>
|
||||||
|
<p><code>microbin --port 8080 --highlightsyntax --editable</code></p>
|
||||||
|
<h3 id="building-microbin">Building MicroBin</h3>
|
||||||
|
<p>Simply clone the repository, build it with <code>cargo build --release</code> and run the <code>microbin</code> executable in the created <code>target/release/</code> directory. It will start on port 8080. You can change the port with <code>-p</code> or <code>--port</code> CL arguments. For other arguments see <a href="https://github.com/szabodanika/microbin/wiki">the Wiki</a>.</p>
|
||||||
|
<pre><code>git clone https:<span class="hljs-comment">//github.com/szabodanika/microbin.git</span>
|
||||||
|
cd microbin
|
||||||
|
cargo build --<span class="hljs-built_in">release</span>
|
||||||
|
./target/<span class="hljs-built_in">release</span>/microbin -p <span class="hljs-number">80</span>
|
||||||
|
</code></pre><h3 id="microbin-as-a-service">MicroBin as a service</h3>
|
||||||
|
<p>To install it as a service on your Linux machine, create a file called <code>/etc/systemd/system/microbin.service</code>, paste this into it with the <code>[username]</code> and <code>[path to installation directory]</code> replaced with the actual values. If you installed MicroBin from Cargo, your executable will be in your system's Cargo directory, e.g. <code>/Users/daniel/.cargo/bin/microbin</code>.</p>
|
||||||
|
<pre><code><span class="hljs-section">[Unit]</span>
|
||||||
|
<span class="hljs-attr">Description</span>=MicroBin
|
||||||
|
<span class="hljs-attr">After</span>=network.target
|
||||||
|
<span class="hljs-section">
|
||||||
|
[Service]</span>
|
||||||
|
<span class="hljs-attr">Type</span>=simple
|
||||||
|
<span class="hljs-attr">Restart</span>=always
|
||||||
|
<span class="hljs-attr">User</span>=[username]
|
||||||
|
<span class="hljs-attr">RootDirectory</span>=/
|
||||||
|
<span class="hljs-attr">WorkingDirectory</span>=[path to installation directory]
|
||||||
|
<span class="hljs-attr">ExecStart</span>=[path to installation directory]/target/release/microbin
|
||||||
|
<span class="hljs-section">
|
||||||
|
[Install]</span>
|
||||||
|
<span class="hljs-attr">WantedBy</span>=multi-user.target
|
||||||
|
</code></pre><p>Here is my <code>microbin.service</code> for example, with some optional arguments:</p>
|
||||||
|
<pre><code><span class="hljs-section">[Unit]</span>
|
||||||
|
<span class="hljs-attr">Description</span>=MicroBin
|
||||||
|
<span class="hljs-attr">After</span>=network.target
|
||||||
|
<span class="hljs-section">
|
||||||
|
[Service]</span>
|
||||||
|
<span class="hljs-attr">Type</span>=simple
|
||||||
|
<span class="hljs-attr">Restart</span>=always
|
||||||
|
<span class="hljs-attr">User</span>=ubuntu
|
||||||
|
<span class="hljs-attr">RootDirectory</span>=/
|
||||||
|
|
||||||
|
<span class="hljs-comment"># This is the directory where I want to run microbin. It will store all the pastas here.</span>
|
||||||
|
<span class="hljs-attr">WorkingDirectory</span>=/home/ubuntu/server/microbin
|
||||||
|
|
||||||
|
<span class="hljs-comment"># This is the location of my executable - I also have 2 optional features enabled</span>
|
||||||
|
<span class="hljs-attr">ExecStart</span>=/home/ubuntu/server/microbin/target/release/microbin --editable --linenumbers --highlightsyntax
|
||||||
|
|
||||||
|
<span class="hljs-comment"># I keep my installation in the home directory, so I need to add this</span>
|
||||||
|
<span class="hljs-attr">ProtectHome</span>=<span class="hljs-literal">off</span>
|
||||||
|
<span class="hljs-section">
|
||||||
|
[Install]</span>
|
||||||
|
<span class="hljs-attr">WantedBy</span>=multi-user.target
|
||||||
|
</code></pre><p>Then start the service with <code>systemctl start microbin</code> and enable it on boot with <code>systemctl enable microbin</code>. To update your MicroBin, simply update or clone the repository again, build it again, and then restart the service with <code>systemctl restart microbin</code>. An update will never affect your existing pastas, unless there is a breaking change in the data model (in which case MicroBin just won't be able to import your DB), which will always be mentioned explicitly.</p>
|
||||||
|
<h3 id="nginx-configuration">NGINX configuration</h3>
|
||||||
|
<pre><code><span class="hljs-section">server</span> {
|
||||||
|
<span class="hljs-comment"># I have HTTPS enabled using certbot - you can use HTTP of course if you want!</span>
|
||||||
|
<span class="hljs-attribute">listen</span> <span class="hljs-number">443</span> ssl; <span class="hljs-comment"># managed by Certbot</span>
|
||||||
|
|
||||||
|
<span class="hljs-attribute">server_name</span> microbin.myserver.com;
|
||||||
|
|
||||||
|
<span class="hljs-attribute">location</span> / {
|
||||||
|
<span class="hljs-comment"># Make sure to change the port if you are not running MicroBin at 8080!</span>
|
||||||
|
<span class="hljs-attribute">proxy_pass</span> http://127.0.0.1:8080<span class="hljs-variable">$request_uri</span>;
|
||||||
|
<span class="hljs-attribute">proxy_set_header</span> Host <span class="hljs-variable">$host</span>;
|
||||||
|
<span class="hljs-attribute">proxy_set_header</span> X-Forwarded-Proto <span class="hljs-variable">$scheme</span>;
|
||||||
|
<span class="hljs-attribute">proxy_set_header</span> X-Real-IP <span class="hljs-variable">$remote_addr</span>;
|
||||||
|
<span class="hljs-attribute">proxy_set_header</span> X-Forwarded-For <span class="hljs-variable">$proxy_add_x_forwarded_for</span>;
|
||||||
|
}
|
||||||
|
|
||||||
|
<span class="hljs-comment"># Limit content size - I have 1GB because my MicroBin server is private, no one else will use it.</span>
|
||||||
|
<span class="hljs-attribute">client_max_body_size</span> <span class="hljs-number">1024M</span>;
|
||||||
|
|
||||||
|
<span class="hljs-attribute">ssl_certificate</span> /etc/letsencrypt/live/microbin.myserver.com/fullchain.pem; <span class="hljs-comment"># managed by Certbot</span>
|
||||||
|
<span class="hljs-attribute">ssl_certificate_key</span> /etc/letsencrypt/live/microbin.myserver.com/privkey.pem; <span class="hljs-comment"># managed by Certbot</span>
|
||||||
|
<span class="hljs-attribute">include</span> /etc/letsencrypt/options-ssl-nginx.conf; <span class="hljs-comment"># managed by Certbot</span>
|
||||||
|
<span class="hljs-attribute">ssl_dhparam</span> /etc/letsencrypt/ssl-dhparams.pem; <span class="hljs-comment"># managed by Certbot</span>
|
||||||
|
}
|
||||||
|
</code></pre><h2 id="3-command-line-arguments">3 Command Line Arguments</h2>
|
||||||
|
<p>There is an ever expanding list of customisations built into MicroBin so you can use it the way you want. Instead of a configuration file, we simply use arguments that you pass to the executable, making the workflow even simpler. Read the following options and if you cannot find what you need, you can always open an issue at our GitHub repository and request a new feature!</p>
|
||||||
|
<h3 id="-auth-username-auth_username-">--auth-username [AUTH_USERNAME]</h3>
|
||||||
|
<p>Require username for HTTP Basic Authentication when visiting the service. If <code>--auth-username</code> is set but <code>--auth-password</code> is not, just leave the password field empty when logging in. You can also just go to <a href="https://username:password@yourserver.net">https://username:password@yourserver.net</a> or <a href="https://username@yourserver.net">https://username@yourserver.net</a> if password is not set instead of typing into the password</p>
|
||||||
|
<h3 id="-auth-password-auth_password-">--auth-password [AUTH_PASSWORD]</h3>
|
||||||
|
<p>Require password for HTTP Basic Authentication when visiting the service. Will not have any affect unless <code>--auth-username</code> is also set. If <code>--auth-username</code> is set but <code>--auth-password</code> is not, just leave the password field empty when logging in. You can also just go to <a href="https://username:password@yourserver.net">https://username:password@yourserver.net</a> or <a href="https://username@yourserver.net">https://username@yourserver.net</a> if password is not set instead of typing into the password prompt.</p>
|
||||||
|
<h3 id="-editable">--editable</h3>
|
||||||
|
<p>Enables editable pastas. You will still be able to make finalised pastas but there will be an extra checkbox to make your new pasta editable from the pasta list or the pasta view page.</p>
|
||||||
|
<h3 id="-footer_text-text-">--footer_text [TEXT]</h3>
|
||||||
|
<p>Replaces the default footer text with your own. If you want to hide the footer, use --hide-footer instead.</p>
|
||||||
|
<h3 id="-h-help">-h, --help</h3>
|
||||||
|
<p>Show all commands in the terminal.</p>
|
||||||
|
<h3 id="-hide-footer">--hide-footer</h3>
|
||||||
|
<p>Hides the footer on every page.</p>
|
||||||
|
<h3 id="-hide-header">--hide-header</h3>
|
||||||
|
<p>Hides the navigation bar on every page.</p>
|
||||||
|
<h3 id="-hide-logo">--hide-logo</h3>
|
||||||
|
<p>Hides the MicroBin logo from the navigation bar on every page.</p>
|
||||||
|
<h3 id="-no-listing">--no-listing</h3>
|
||||||
|
<p>Disables the /pastalist endpoint, essentially making all pastas private.</p>
|
||||||
|
<h3 id="-highlightsyntax">--highlightsyntax</h3>
|
||||||
|
<p>Enables syntax highlighting support. When creating a new pasta, a new dropdown selector will be added where you can select your pasta's syntax, or just leave it empty for no highlighting.</p>
|
||||||
|
<h3 id="-p-port-port-">-p, --port [PORT]</h3>
|
||||||
|
<p>Default value: 8080</p>
|
||||||
|
<p>Sets the port for the server will be listening on.</p>
|
||||||
|
<h3 id="-private">--private</h3>
|
||||||
|
<p>Enables private pastas. Adds a new checkbox to make your pasta private, which then won't show up on the pastalist page. With the URL to your pasta, it will still be accessible.</p>
|
||||||
|
<h3 id="-pure-html">--pure-html</h3>
|
||||||
|
<p>Disables main CSS styling, just uses a few in-line stylings for the layout. With this option you will lose dark-mode support.</p>
|
||||||
|
<h3 id="-readonly">--readonly</h3>
|
||||||
|
<p>Disables adding/editing/removing pastas entirely.</p>
|
||||||
|
<h3 id="-title-title-">--title [TITLE]</h3>
|
||||||
|
<p>Replaces "MicroBin" with your title of choice in the navigation bar.</p>
|
||||||
|
<h3 id="-t-threads-threads-">-t, --threads [THREADS]</h3>
|
||||||
|
<p>Default value: 1</p>
|
||||||
|
<p>Number of workers MicroBin is allowed to have. Increase this to the number of CPU cores you have if you want to go beast mode, but for personal use one worker is enough.</p>
|
||||||
|
<h3 id="-v-version">-V, --version</h3>
|
||||||
|
<p>Displays your MicroBin's version information.</p>
|
||||||
|
<h3 id="-wide">--wide</h3>
|
||||||
|
<p>Changes the maximum width of the UI from 720 pixels to 1080 pixels.</p>
|
||||||
|
|
||||||
|
{% include "footer.html" %}
|
|
@ -1,115 +1,26 @@
|
||||||
{% include "header.html" %}
|
{% include "header.html" %}
|
||||||
|
<form action="upload" method="POST" enctype="multipart/form-data">
|
||||||
<form id="pasta-form" action="upload" method="POST" enctype="multipart/form-data">
|
|
||||||
<br>
|
<br>
|
||||||
<div id="settings">
|
<div style="display: grid;
|
||||||
|
grid-gap: 4px;
|
||||||
|
grid-template-columns: repeat(auto-fit, 234px);
|
||||||
|
grid-template-rows: repeat(1, 100px); ">
|
||||||
<div>
|
<div>
|
||||||
<label for="expiration">Expiration</label><br>
|
<label for="expiration">Expiration</label><br>
|
||||||
<select style="width: 100%;" name="expiration" id="expiration">
|
<select style="width: 100%;" name="expiration" id="expiration">
|
||||||
<optgroup label="Expire after">
|
<optgroup label="Expire">
|
||||||
{% if args.default_expiry == "1min" %}
|
<option value="1min">1 minute</option>
|
||||||
<option selected value="1min">
|
<option value="10min">10 minutes</option>
|
||||||
{%- else %}
|
<option value="1hour">1 hour</option>
|
||||||
<option value="1min">
|
<option selected value="24hour">24 hours</option>
|
||||||
{%- endif %}
|
<option value="1week">1 week</option>
|
||||||
1 minute
|
|
||||||
</option>
|
|
||||||
{% if args.default_expiry == "10min" %}
|
|
||||||
<option selected value="10min">
|
|
||||||
{%- else %}
|
|
||||||
<option value="10min">
|
|
||||||
{%- endif %}
|
|
||||||
10 minutes
|
|
||||||
</option>
|
|
||||||
{% if args.default_expiry == "1hour" %}
|
|
||||||
<option selected value="1hour">
|
|
||||||
{%- else %}
|
|
||||||
<option value="1hour">
|
|
||||||
{%- endif %}
|
|
||||||
1 hour
|
|
||||||
</option>
|
|
||||||
{% if args.default_expiry == "24hour" %}
|
|
||||||
<option selected value="24hour">
|
|
||||||
{%- else %}
|
|
||||||
<option value="24hour">
|
|
||||||
{%- endif %}
|
|
||||||
24 hours
|
|
||||||
</option>
|
|
||||||
{% if args.default_expiry == "3days" %}
|
|
||||||
<option selected value="3days">
|
|
||||||
{%- else %}
|
|
||||||
<option value="3days">
|
|
||||||
{%- endif %}
|
|
||||||
3 days
|
|
||||||
</option>
|
|
||||||
{% if args.default_expiry == "1week" %}
|
|
||||||
<option selected value="1week">
|
|
||||||
{%- else %}
|
|
||||||
<option value="1week">
|
|
||||||
{%- endif %}
|
|
||||||
1 week
|
|
||||||
</option>
|
|
||||||
</optgroup>
|
</optgroup>
|
||||||
{% if !args.no_eternal_pasta %}
|
|
||||||
<option value="never">Never Expire</option>
|
<option value="never">Never Expire</option>
|
||||||
{%- endif %}
|
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
{% if args.enable_burn_after %}
|
|
||||||
<div>
|
|
||||||
<label for="expiration">Burn After</label><br>
|
|
||||||
<select style="width: 100%;" name="burn_after" id="burn_after">
|
|
||||||
<optgroup label="Burn after">
|
|
||||||
{% if args.default_burn_after == 1 %}
|
|
||||||
<option selected value="1">
|
|
||||||
{%- else %}
|
|
||||||
<option value="1">
|
|
||||||
{%- endif %}
|
|
||||||
First Read
|
|
||||||
</option>
|
|
||||||
{% if args.default_burn_after == 10 %}
|
|
||||||
<option selected value="10">
|
|
||||||
{%- else %}
|
|
||||||
<option value="10">
|
|
||||||
{%- endif %}
|
|
||||||
10th Read
|
|
||||||
</option>
|
|
||||||
{% if args.default_burn_after == 100 %}
|
|
||||||
<option selected value="100">
|
|
||||||
{%- else %}
|
|
||||||
<option value="100">
|
|
||||||
{%- endif %}
|
|
||||||
100th Read
|
|
||||||
</option>
|
|
||||||
{% if args.default_burn_after == 1000 %}
|
|
||||||
<option selected value="1000">
|
|
||||||
{%- else %}
|
|
||||||
<option value="1000">
|
|
||||||
{%- endif %}
|
|
||||||
1000th Read
|
|
||||||
</option>
|
|
||||||
{% if args.default_burn_after == 10000 %}
|
|
||||||
<option selected value="10000">
|
|
||||||
{%- else %}
|
|
||||||
<option value="10000">
|
|
||||||
{%- endif %}
|
|
||||||
10000th Read
|
|
||||||
</option>
|
|
||||||
</optgroup>
|
|
||||||
{% if args.default_burn_after == 0 %}
|
|
||||||
<option selected value="0">
|
|
||||||
{%- else %}
|
|
||||||
<option value="0">
|
|
||||||
{%- endif %}
|
|
||||||
No Limit
|
|
||||||
</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
{%- endif %}
|
|
||||||
|
|
||||||
{% if args.highlightsyntax %}
|
{% if args.highlightsyntax %}
|
||||||
<div>
|
<div>
|
||||||
<label for="syntax-highlight">Syntax</label><br>
|
<label for="syntax-highlight">Syntax Highlighting</label><br>
|
||||||
<select style="width: 100%;" name="syntax-highlight" id="syntax-highlight">
|
<select style="width: 100%;" name="syntax-highlight" id="syntax-highlight">
|
||||||
<option value="none">None</option>
|
<option value="none">None</option>
|
||||||
<optgroup label="Source Code">
|
<optgroup label="Source Code">
|
||||||
|
@ -149,104 +60,40 @@
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
{% if args.editable || args.private %}
|
<label>File attachment</label>
|
||||||
<label>Other</label>
|
<br>
|
||||||
{%- endif %}
|
<input style="width: 100%;" type="file" id="file" name="file">
|
||||||
{% if args.editable %}
|
|
||||||
<div>
|
|
||||||
<input type="checkbox" id="editable" name="editable" value="editable">
|
|
||||||
<label for="editable">Editable</label>
|
|
||||||
</div>
|
|
||||||
{%- endif %}
|
|
||||||
{% if args.private %}
|
|
||||||
<div>
|
|
||||||
<input type="checkbox" id="private" name="private" value="private">
|
|
||||||
<label for="private">Private</label>
|
|
||||||
</div>
|
|
||||||
{%- endif %}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<label>Content</label>
|
<label>Content</label>
|
||||||
<textarea style="width: 100%; min-height: 100px; margin-bottom: 2em" name="content" autofocus></textarea>
|
<br>
|
||||||
<div style="overflow:auto;">
|
<textarea style="width: 100%; min-height: 100px" name="content" autofocus></textarea>
|
||||||
{% if !args.no_file_upload %}
|
<br>
|
||||||
<div style="float: left">
|
<div style="display: grid;
|
||||||
<label for="file" id="attach-file-button-label"><a role="button" id="attach-file-button">Select or drop
|
grid-gap: 4px;
|
||||||
file attachment</a></label>
|
grid-template-columns: repeat(auto-fit, 120px);
|
||||||
<br>
|
grid-template-rows: repeat(1, 50px); ">
|
||||||
<input type="file" id="file" name="file" />
|
{% if args.editable %}
|
||||||
|
<div>
|
||||||
|
<input type="checkbox" id="editable" name="editable" value="editable">
|
||||||
|
<label for="editable">Editable</label>
|
||||||
|
</div>
|
||||||
|
{%- endif %}
|
||||||
|
{% if args.private %}
|
||||||
|
<div>
|
||||||
|
<input type="checkbox" id="private" name="private" value="private">
|
||||||
|
<label for="private">Private</label>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
|
||||||
{% if args.readonly %}
|
|
||||||
<b>
|
|
||||||
<!--<input style="width: 140px; float: right; background-color: #0076d18f;" disabled type="submit"-->
|
|
||||||
<!--value="Read Only" /></b>-->
|
|
||||||
<input style="width: 140px; float: right" disabled type="submit"
|
|
||||||
value="Read Only" /></b>
|
|
||||||
{%- else %}
|
|
||||||
<b>
|
|
||||||
<!--<input style="width: 140px; float: right; background-color: #0076d18f;" type="submit" value="Save" />-->
|
|
||||||
<input style="width: 140px; float: right" type="submit" value="Save" />
|
|
||||||
</b>
|
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{% if args.readonly %}
|
||||||
|
<input style="width: 140px; background-color: limegreen" disabled type="submit" value="Read Only"/>
|
||||||
|
{%- else %}
|
||||||
|
<input style="width: 140px; background-color: limegreen" type="submit" value="Save"/>
|
||||||
|
{%- endif %}
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<br>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script>
|
|
||||||
const hiddenFileButton = document.getElementById('file');
|
|
||||||
const attachFileButton = document.getElementById('attach-file-button');
|
|
||||||
const dropContainer = document.getElementById('pasta-form');
|
|
||||||
|
|
||||||
hiddenFileButton.addEventListener('change', function () {
|
|
||||||
attachFileButton.textContent = "Attached: " + this.files[0].name;
|
|
||||||
});
|
|
||||||
|
|
||||||
dropContainer.ondragover = dropContainer.ondragenter = function (evt) {
|
|
||||||
evt.preventDefault();
|
|
||||||
if (hiddenFileButton.files.length == 0) {
|
|
||||||
attachFileButton.textContent = "Drop your file here";
|
|
||||||
} else {
|
|
||||||
attachFileButton.textContent = "Drop your file here to replace " + hiddenFileButton.files[0].name;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
dropContainer.ondrop = function (evt) {
|
|
||||||
const dataTransfer = new DataTransfer();
|
|
||||||
dataTransfer.items.add(evt.dataTransfer.files[0]);
|
|
||||||
hiddenFileButton.files = dataTransfer.files;
|
|
||||||
attachFileButton.textContent = "Attached: " + hiddenFileButton.files[0].name;
|
|
||||||
evt.preventDefault();
|
|
||||||
};
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
input::file-selector-button {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#settings {
|
|
||||||
display: grid;
|
|
||||||
grid-gap: 6px;
|
|
||||||
grid-template-columns: repeat(auto-fit, 150px);
|
|
||||||
grid-template-rows: repeat(1, 90px);
|
|
||||||
margin-bottom: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
select {
|
|
||||||
height: 3rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
#attach-file-button-label {
|
|
||||||
padding-top: 1rem;
|
|
||||||
padding-bottom: 1rem;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
#file {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
{% include "footer.html" %}
|
{% include "footer.html" %}
|
||||||
|
|
|
@ -1,42 +0,0 @@
|
||||||
{% include "header.html" %}
|
|
||||||
|
|
||||||
<h2>Welcome to MicroBin</h2>
|
|
||||||
<div style="height: 200px;">
|
|
||||||
<div style="float: left">
|
|
||||||
<h4>Links</h4>
|
|
||||||
<a href="https://microbin.eu/documentation" style="margin-right: 1rem">Documentation and Help</a>
|
|
||||||
<br>
|
|
||||||
<a href="https://gitlab.com/obsidianical/microbin" style="margin-right: 1rem">Source Code</a>
|
|
||||||
<br>
|
|
||||||
<a href="https://gitlab.com/obsidianical/microbin/issues" style="margin-right: 1rem">Feedback</a>
|
|
||||||
<br>
|
|
||||||
<a href="https://microbin.eu/donate">Donate and Sponsor</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div style="float: right">
|
|
||||||
<h4>Info</h4>
|
|
||||||
<table style="width: 400px">
|
|
||||||
<tr>
|
|
||||||
<td><b>Version</b></td>
|
|
||||||
<td>{{version_string}} </td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td><b>Status</b></td>
|
|
||||||
<td>{{status}} </td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td><b>Pastas</b></td>
|
|
||||||
<td>{{pastas.len()}} </td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{% if message != "" %}
|
|
||||||
<h4>Messages</h4>
|
|
||||||
<p>{{message}}</p>
|
|
||||||
{%- endif %}
|
|
||||||
|
|
||||||
<br>
|
|
||||||
|
|
||||||
{% include "footer.html" %}
|
|
|
@ -1,149 +1,53 @@
|
||||||
{% include "header.html" %}
|
{% include "header.html" %}
|
||||||
<div style="float: left">
|
<div style="float: left">
|
||||||
{% if pasta.content != "No Text Content" %}
|
<a style="margin-right: 0.5rem" href="/raw/{{pasta.id_as_animals()}}">Raw Text Content</a>
|
||||||
<button id="copy-text-button" class="copy-button" style="margin-right: 0.5rem">
|
{% if pasta.file.is_some() %}
|
||||||
Copy Text
|
<a style="margin-right: 0.5rem; margin-left: 0.5rem"
|
||||||
</button>
|
href="/file/{{pasta.id_as_animals()}}/{{pasta.file.as_ref().unwrap().name()}}">
|
||||||
{% if args.public_path.to_string() != "" && pasta.pasta_type == "url" %}
|
Attached file'{{pasta.file.as_ref().unwrap().name()}}' [{{pasta.file.as_ref().unwrap().size}}]
|
||||||
<button id="copy-redirect-button" class="copy-button" style="margin-right: 0.5rem">
|
</a>
|
||||||
Copy Redirect
|
|
||||||
</button>
|
|
||||||
{%- endif %}
|
|
||||||
<a style="margin-right: 1rem" href="{{ args.public_path }}/{{ args.raw_endpoint }}/{{pasta.id_as_animals()}}">Raw Text
|
|
||||||
Content</a>
|
|
||||||
{%- endif %}
|
|
||||||
{% if args.qr && args.public_path.to_string() != "" %}
|
|
||||||
<a style="margin-right: 1rem" href="{{ args.public_path }}/qr/{{pasta.id_as_animals()}}">QR</a>
|
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{% if pasta.editable %}
|
{% if pasta.editable %}
|
||||||
<a style="margin-right: 1rem" href="{{ args.public_path }}/edit/{{pasta.id_as_animals()}}">Edit</a>
|
<a style="margin-right: 0.5rem; margin-left: 0.5rem" href="/edit/{{pasta.id_as_animals()}}">Edit</a>
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
<a style="margin-right: 1rem" href="{{ args.public_path }}/remove/{{pasta.id_as_animals()}}">Remove</a>
|
<a style="margin-right: 0.5rem; margin-left: 0.5rem" href="/remove/{{pasta.id_as_animals()}}">Remove</a>
|
||||||
</div>
|
</div>
|
||||||
<div style="float: right">
|
<div style="float: right">
|
||||||
<a style="margin-right: 0.5rem"
|
<a href="/pasta/{{pasta.id_as_animals()}}"><i>{{pasta.id_as_animals()}}</i></a>
|
||||||
href="{{ args.public_path }}/{{ args.pasta_endpoint }}/{{pasta.id_as_animals()}}"><i>{{pasta.id_as_animals()}}</i></a>
|
|
||||||
{% if args.public_path.to_string() != "" %}
|
|
||||||
<button id="copy-url-button" class="copy-button" style="margin-right: 0">
|
|
||||||
Copy URL
|
|
||||||
</button>
|
|
||||||
{%- endif %}
|
|
||||||
</div>
|
</div>
|
||||||
{% if pasta.file.is_some() %}
|
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<div style="clear: both;">
|
||||||
{% if pasta.file.as_ref().unwrap().is_image() %}
|
{% if args.highlightsyntax %}
|
||||||
<img src="{{ args.public_path }}/file/{{pasta.id_as_animals()}}/{{pasta.file.as_ref().unwrap().name()}}" alt="">
|
<pre><code>{{pasta.content_syntax_highlighted()}}</code></pre>
|
||||||
<br>
|
|
||||||
{%- endif %}
|
|
||||||
<a href="{{ args.public_path }}/file/{{pasta.id_as_animals()}}/{{pasta.file.as_ref().unwrap().name()}}" download>
|
|
||||||
Download attached file: '{{pasta.file.as_ref().unwrap().name()}}' [{{pasta.file.as_ref().unwrap().size}}]
|
|
||||||
</a>
|
|
||||||
{%- endif %}
|
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
{% if pasta.content != "No Text Content" %}
|
|
||||||
<div class="code-container">
|
|
||||||
<div style="clear: both;">
|
|
||||||
{% if args.highlightsyntax %}
|
|
||||||
<pre><code id="code">{{pasta.content_syntax_highlighted()}}</code></pre>
|
|
||||||
{%- else %}
|
|
||||||
<pre><code id="code">{{pasta.content_not_highlighted()}}</code></pre>
|
|
||||||
{%- endif %}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{%- endif %}
|
|
||||||
<div>
|
|
||||||
{% if pasta.read_count == 1 %}
|
|
||||||
<p style="font-size: small">Read {{pasta.read_count}} time, last {{pasta.last_read_time_ago_as_string()}}</p>
|
|
||||||
{%- else %}
|
{%- else %}
|
||||||
<p style="font-size: small">Read {{pasta.read_count}} times, last {{pasta.last_read_time_ago_as_string()}}</p>
|
<pre><code>{{pasta.content_not_highlighted()}}</code></pre>
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<br>
|
|
||||||
|
|
||||||
|
|
||||||
<script>
|
|
||||||
const copyURLBtn = document.getElementById("copy-url-button")
|
|
||||||
const copyTextBtn = document.getElementById("copy-text-button")
|
|
||||||
const copyRedirectBtn = document.getElementById("copy-redirect-button")
|
|
||||||
const content = `{{ pasta.content_escaped() }}`
|
|
||||||
const url = `{{ args.public_path }}/{{ args.pasta_endpoint }}/{{pasta.id_as_animals()}}`
|
|
||||||
const redirect_url = `{{ args.public_path }}/{{ args.url_endpoint }}/{{pasta.id_as_animals()}}`
|
|
||||||
|
|
||||||
copyURLBtn.addEventListener("click", () => {
|
|
||||||
navigator.clipboard.writeText(url)
|
|
||||||
copyURLBtn.innerHTML = "Copied"
|
|
||||||
setTimeout(() => {
|
|
||||||
copyURLBtn.innerHTML = "Copy URL"
|
|
||||||
}, 1000)
|
|
||||||
})
|
|
||||||
|
|
||||||
// it will be undefined when the element does not exist on non-url pastas
|
|
||||||
if (copyRedirectBtn) {
|
|
||||||
copyRedirectBtn.addEventListener("click", () => {
|
|
||||||
navigator.clipboard.writeText(redirect_url)
|
|
||||||
copyRedirectBtn.innerHTML = "Copied"
|
|
||||||
setTimeout(() => {
|
|
||||||
copyRedirectBtn.innerHTML = "Copy Redirect"
|
|
||||||
}, 1000)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
copyTextBtn.addEventListener("click", () => {
|
|
||||||
navigator.clipboard.writeText(content)
|
|
||||||
copyTextBtn.innerHTML = "Copied"
|
|
||||||
setTimeout(() => {
|
|
||||||
copyTextBtn.innerHTML = "Copy Text"
|
|
||||||
}, 1000)
|
|
||||||
})
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
code-line {
|
code-line {
|
||||||
counter-increment: listing;
|
counter-increment: listing;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
float: left;
|
float: left;
|
||||||
clear: left;
|
clear: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
code-line::before {
|
code-line::before {
|
||||||
content: counter(listing);
|
content: counter(listing);
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding-left: auto;
|
float: left;
|
||||||
margin-left: auto;
|
padding-left: auto;
|
||||||
text-align: left;
|
margin-left: auto;
|
||||||
width: 1.6rem;
|
text-align: left;
|
||||||
border-right: 1px solid lightgrey;
|
width: 1.6rem;
|
||||||
color: grey;
|
border-right: 1px solid lightgrey;
|
||||||
margin-right: 0.4rem;
|
color: grey;
|
||||||
-webkit-user-select: none;
|
margin-right: 0.4rem;
|
||||||
-moz-user-select: none;
|
-webkit-user-select: none;
|
||||||
-ms-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
-ms-user-select: none;
|
||||||
}
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
#code {
|
|
||||||
min-height: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code-container {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hidden {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.copy-button {
|
|
||||||
font-size: small;
|
|
||||||
padding: 4px;
|
|
||||||
padding-left: 0.8rem;
|
|
||||||
padding-right: 0.8rem;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
{% include "footer.html" %}
|
{% include "footer.html" %}
|
||||||
|
|
|
@ -4,117 +4,112 @@
|
||||||
{% if pastas.is_empty() %}
|
{% if pastas.is_empty() %}
|
||||||
<br>
|
<br>
|
||||||
<p>
|
<p>
|
||||||
No pastas yet. 😔 Create one <a href="{{ args.public_path }}/">here</a>.
|
No pastas yet. 😔 Create one <a href="/">here</a>.
|
||||||
</p>
|
</p>
|
||||||
<br>
|
<br>
|
||||||
{%- else %}
|
{%- else %}
|
||||||
<h3>Pastas</h3>
|
<br>
|
||||||
{% if args.pure_html %}
|
{% if args.pure_html %}
|
||||||
<table border="1" style="width: 100%; white-space: nowrap;">
|
<table border="1" style="width: 100%">
|
||||||
{% else %}
|
{% else %}
|
||||||
<table style="width: 100%">
|
<table style="width: 100%">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<thead>
|
<thead>
|
||||||
<th style="width: 30%">
|
<tr>
|
||||||
Key
|
<th colspan="4">Pastas</th>
|
||||||
</th>
|
</tr>
|
||||||
<th style="width: 20%">
|
<tr>
|
||||||
Created
|
<th>
|
||||||
</th>
|
Key
|
||||||
<th style="width: 20%">
|
</th>
|
||||||
Expiration
|
<th>
|
||||||
</th>
|
Created
|
||||||
<th style="width: 30%">
|
</th>
|
||||||
</th>
|
<th>
|
||||||
</thead>
|
Expiration
|
||||||
<tbody>
|
</th>
|
||||||
{% for pasta in pastas %}
|
<th>
|
||||||
{% if pasta.pasta_type == "text" && !pasta.private %}
|
|
||||||
<tr>
|
</th>
|
||||||
<td>
|
</tr>
|
||||||
<a href="{{ args.public_path }}/{{ args.pasta_endpoint }}/{{pasta.id_as_animals()}}">{{pasta.id_as_animals()}}</a>
|
</thead>
|
||||||
</td>
|
<tbody>
|
||||||
<td>
|
{% for pasta in pastas %}
|
||||||
{{pasta.created_as_string()}}
|
{% if pasta.pasta_type == "text" && !pasta.private %}
|
||||||
</td>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
{{pasta.expiration_as_string()}}
|
<a href="/pasta/{{pasta.id_as_animals()}}">{{pasta.id_as_animals()}}</a>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a style="margin-right:1rem" href="{{ args.public_path }}/{{ args.raw_endpoint }}/{{pasta.id_as_animals()}}">Raw</a>
|
{{pasta.created_as_string()}}
|
||||||
{% if pasta.file.is_some() %}
|
</td>
|
||||||
<a style="margin-right:1rem"
|
<td>
|
||||||
href="{{ args.public_path }}/file/{{pasta.id_as_animals()}}/{{pasta.file.as_ref().unwrap().name()}}">File</a>
|
{{pasta.expiration_as_string()}}
|
||||||
{%- endif %}
|
</td>
|
||||||
{% if pasta.editable %}
|
<td>
|
||||||
<a style="margin-right:1rem" href="{{ args.public_path }}/edit/{{pasta.id_as_animals()}}">Edit</a>
|
<a style="margin-right:1rem" href="/raw/{{pasta.id_as_animals()}}">Raw</a>
|
||||||
{%- endif %}
|
{% if pasta.file.is_some() %}
|
||||||
<a href="{{ args.public_path }}/remove/{{pasta.id_as_animals()}}">Remove</a>
|
<a style="margin-right:1rem" href="/file/{{pasta.id_as_animals()}}/{{pasta.file.as_ref().unwrap().name()}}">File</a>
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{% endfor %}
|
{% if pasta.editable %}
|
||||||
</tbody>
|
<a style="margin-right:1rem" href="/edit/{{pasta.id_as_animals()}}">Edit</a>
|
||||||
</table>
|
|
||||||
<br>
|
|
||||||
<h3>URL Redirects</h3>
|
|
||||||
{% if args.pure_html %}
|
|
||||||
<table border="1" style="width: 100%">
|
|
||||||
{% else %}
|
|
||||||
<table style="width: 100%">
|
|
||||||
{% endif %}
|
|
||||||
<thead>
|
|
||||||
<th style="width: 30%">
|
|
||||||
Key
|
|
||||||
</th>
|
|
||||||
<th style="width: 20%">
|
|
||||||
Created
|
|
||||||
</th>
|
|
||||||
<th style="width: 20%">
|
|
||||||
Expiration
|
|
||||||
</th>
|
|
||||||
<th style="width: 30%">
|
|
||||||
</th>
|
|
||||||
</thead>
|
|
||||||
{% for pasta in pastas %}
|
|
||||||
{% if pasta.pasta_type == "url" && !pasta.private %}
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<a href="{{ args.public_path }}/{{ args.pasta_endpoint }}/{{pasta.id_as_animals()}}">{{pasta.id_as_animals()}}</a>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
{{pasta.created_as_string()}}
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
{{pasta.expiration_as_string()}}
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<a style="margin-right:1rem" href="{{ args.public_path }}/{{ args.url_endpoint }}/{{pasta.id_as_animals()}}">Open</a>
|
|
||||||
<a style="margin-right:1rem; cursor: pointer;" id="copy-button"
|
|
||||||
data-url="{{ args.public_path }}/{{ args.url_endpoint }}/{{pasta.id_as_animals()}}">Copy</a>
|
|
||||||
{% if pasta.editable %}
|
|
||||||
<a style="margin-right:1rem" href="{{ args.public_path }}/edit/{{pasta.id_as_animals()}}">Edit</a>
|
|
||||||
{%- endif %}
|
|
||||||
<a href="{{ args.public_path }}/remove/{{pasta.id_as_animals()}}">Remove</a>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{% endfor %}
|
<a href="/remove/{{pasta.id_as_animals()}}">Remove</a>
|
||||||
</tbody>
|
</td>
|
||||||
</table>
|
</tr>
|
||||||
<br>
|
{%- endif %}
|
||||||
{%- endif %}
|
{% endfor %}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<br>
|
||||||
|
{% if args.pure_html %}
|
||||||
|
<table border="1" style="width: 100%">
|
||||||
|
{% else %}
|
||||||
|
<table style="width: 100%">
|
||||||
|
{% endif %}
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th colspan="4">URL Redirects</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>
|
||||||
|
Key
|
||||||
|
</th>
|
||||||
|
<th>
|
||||||
|
Created
|
||||||
|
</th>
|
||||||
|
<th>
|
||||||
|
Expiration
|
||||||
|
</th>
|
||||||
|
<th>
|
||||||
|
|
||||||
<script>
|
</th>
|
||||||
const btn = document.querySelector("#copy-button");
|
</tr>
|
||||||
btn.addEventListener("click", () => {
|
</thead>
|
||||||
navigator.clipboard.writeText(btn.dataset.url)
|
{% for pasta in pastas %}
|
||||||
btn.innerHTML = "Copied"
|
{% if pasta.pasta_type == "url" && !pasta.private %}
|
||||||
setTimeout(() => {
|
<tr>
|
||||||
btn.innerHTML = "Copy"
|
<td>
|
||||||
}, 1000)
|
<a href="/url/{{pasta.id_as_animals()}}">{{pasta.id_as_animals()}}</a>
|
||||||
})
|
</td>
|
||||||
|
<td>
|
||||||
</script>
|
{{pasta.created_as_string()}}
|
||||||
|
</td>
|
||||||
{% include "footer.html" %}
|
<td>
|
||||||
|
{{pasta.expiration_as_string()}}
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a style="margin-right:1rem" href="/raw/{{pasta.id_as_animals()}}">Raw</a>
|
||||||
|
{% if pasta.editable %}
|
||||||
|
<a style="margin-right:1rem" href="/edit/{{pasta.id_as_animals()}}">Edit</a>
|
||||||
|
{%- endif %}
|
||||||
|
<a href="/remove/{{pasta.id_as_animals()}}">Remove</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
{%- endif %}
|
||||||
|
{% endfor %}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<br>
|
||||||
|
{%- endif %}
|
||||||
|
{% include "footer.html" %}
|
||||||
|
|
|
@ -1,29 +0,0 @@
|
||||||
{% include "header.html" %}
|
|
||||||
|
|
||||||
<div style="float: left">
|
|
||||||
<a href="{{ args.public_path }}/pasta/{{pasta.id_as_animals()}}">Back to Pasta</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div style="text-align: center; padding: 3rem;">
|
|
||||||
{% if pasta.pasta_type == "url" %}
|
|
||||||
<a href="{{ args.public_path }}/url/{{pasta.id_as_animals()}}">
|
|
||||||
{{qr}}
|
|
||||||
</a>
|
|
||||||
{% else %}
|
|
||||||
<a href="{{ args.public_path }}/pasta/{{pasta.id_as_animals()}}">
|
|
||||||
{{qr}}
|
|
||||||
</a>
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
.copy-text-button,
|
|
||||||
.copy-url-button {
|
|
||||||
font-size: small;
|
|
||||||
padding: 4px;
|
|
||||||
width: 6rem;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
{% include "footer.html" %}
|
|
1
templates/water.css
Normal file
1
templates/water.css
Normal file
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue