2023-04-10 02:35:51 +00:00
|
|
|
[![docker-pulls](https://img.shields.io/docker/pulls/sintan1729/simply-shorten)](https://hub.docker.com/r/sintan1729/simply-shorten)
|
|
|
|
[![maintainer](https://img.shields.io/badge/maintainer-SinTan1729-blue)](https://github.com/SinTan1729)
|
|
|
|
![commit-since-latest-release](https://img.shields.io/github/commits-since/SinTan1729/simply-shorten/latest?sort=semver&label=commits%20since%20latest%20release)
|
|
|
|
|
2023-04-03 18:52:01 +00:00
|
|
|
# ![Logo](actix/resources/assets/favicon-32.png) <span style="font-size:42px">Simply Shorten</span>
|
2022-11-09 23:46:43 +00:00
|
|
|
|
2020-02-14 21:36:50 +00:00
|
|
|
# What is it?
|
2020-06-18 18:09:43 +00:00
|
|
|
A simple selfhosted URL shortener with no unnecessary features.
|
|
|
|
|
2020-06-18 18:13:07 +00:00
|
|
|
Don't worry if you see no activity for a long time. I consider this project
|
|
|
|
to be complete, not dead. I'm unlikely to add any new features, but I will try
|
|
|
|
and fix every bug you report.
|
2020-06-18 18:09:43 +00:00
|
|
|
|
2020-06-18 18:13:07 +00:00
|
|
|
If you feel like a feature is missing, please let me know by creating an issue
|
|
|
|
using the "feature request" template.
|
2020-02-14 21:36:50 +00:00
|
|
|
|
|
|
|
## But why another URL shortener?
|
|
|
|
I've looked at a couple popular URL shorteners, however they either have
|
|
|
|
unnecessary features, or they didn't have all the features I wanted.
|
|
|
|
|
|
|
|
# Features
|
2022-12-28 13:31:03 +00:00
|
|
|
- Shortens URLs of any length to a fixed length, randomly generated string.
|
2020-02-14 21:36:50 +00:00
|
|
|
- (Optional) Allows you to specify the shortened URL instead of the generated
|
2022-12-28 13:31:03 +00:00
|
|
|
one (Missing in a surprising number of alternatives).
|
2020-02-14 21:36:50 +00:00
|
|
|
- Opening the fixed length URL in your browser will instantly redirect you
|
|
|
|
to the correct long URL (you'd think that's a standard feature, but
|
2022-12-28 13:31:03 +00:00
|
|
|
apparently it's not).
|
|
|
|
- Provides a simple API for adding new short links.
|
2022-11-04 23:53:13 +00:00
|
|
|
- Counts number of hits for each short link in a privacy respecting way
|
2022-12-28 13:31:03 +00:00
|
|
|
i.e. only the hit is recorded, and nothing else.
|
|
|
|
- Allows setting the URL of your website, in case you want to conveniently
|
|
|
|
generate short links locally.
|
|
|
|
- Links are stored in an SQLite database.
|
|
|
|
- Available as a Docker container.
|
2023-04-03 18:52:01 +00:00
|
|
|
- Backend written in Rust using [Actix](https://actix.rs/), frontend
|
2020-02-14 21:36:50 +00:00
|
|
|
written in plain HTML and vanilla JS, using [Pure CSS](https://purecss.io/)
|
2022-12-28 13:31:03 +00:00
|
|
|
for styling.
|
2023-04-08 22:22:59 +00:00
|
|
|
- Uses very basic authentication using a provided password. It's not encrypted in transport.
|
|
|
|
I recommend using something like [Nginx Proxy Manager](https://nginxproxymanager.com/) to
|
|
|
|
encrypt the connection by SSL.
|
2020-05-23 17:16:27 +00:00
|
|
|
|
|
|
|
# Bloat that will not be implemented
|
2022-11-04 06:41:15 +00:00
|
|
|
- Tracking or spying of any kind. The only logs that still exist are
|
2020-05-23 17:54:27 +00:00
|
|
|
errors printed to stderr and the default SLF4J warning.
|
2023-04-10 02:35:51 +00:00
|
|
|
- User management. If you need a shortener for your whole organization, either
|
2020-05-23 17:54:27 +00:00
|
|
|
run separate containers for everyone or use something else.
|
2020-05-23 17:16:27 +00:00
|
|
|
- Cookies, newsletters, "we value your privacy" popups or any of the multiple
|
2020-05-23 17:54:27 +00:00
|
|
|
other ways modern web shows how anti-user it is. We all hate those, and they're
|
|
|
|
not needed here.
|
|
|
|
- Paywalls or messages begging for donations. If you want to support me (for
|
2023-04-10 02:35:51 +00:00
|
|
|
whatever reason), you can message me through GitHub issues.
|
2020-02-14 21:36:50 +00:00
|
|
|
|
2020-02-16 13:50:49 +00:00
|
|
|
# Screenshot
|
2022-11-13 00:50:10 +00:00
|
|
|
![Screenshot](screenshot.png)
|
2020-02-16 13:50:49 +00:00
|
|
|
|
2020-02-14 21:36:50 +00:00
|
|
|
# Usage
|
2022-11-05 19:41:00 +00:00
|
|
|
## Using `docker compose` (Recommended method)
|
2022-11-15 05:12:26 +00:00
|
|
|
There is a sample `compose.yaml` file in this repository. It contains
|
2022-11-05 19:41:00 +00:00
|
|
|
everything needed for a basic install. You can use it as a base, modifying
|
|
|
|
it as needed. Run it with
|
|
|
|
```
|
|
|
|
docker compose up -d
|
|
|
|
```
|
2022-11-05 19:44:15 +00:00
|
|
|
If you're using a custom location for the `db_url`, make sure to make that file
|
|
|
|
before running the docker image, as otherwise a directory will be created in its
|
2023-04-10 02:35:51 +00:00
|
|
|
place, resulting in possibly unwanted behavior.
|
2022-11-05 19:41:00 +00:00
|
|
|
## Building from source
|
2020-02-14 21:36:50 +00:00
|
|
|
Clone this repository
|
|
|
|
```
|
2023-04-10 02:35:51 +00:00
|
|
|
git clone https://github.com/SinTan1729/simply-shorten
|
2020-02-14 21:36:50 +00:00
|
|
|
```
|
|
|
|
|
2020-02-16 14:51:00 +00:00
|
|
|
### 2. Set environment variables
|
|
|
|
```bash
|
2020-03-24 08:07:25 +00:00
|
|
|
# Required for authentication
|
2020-02-16 14:51:00 +00:00
|
|
|
export password=<api password>
|
2020-03-24 08:07:25 +00:00
|
|
|
# Sets where the database exists. Can be local or remote (optional)
|
2020-05-23 17:54:27 +00:00
|
|
|
export db_url=<url> # Default: './urls.sqlite'
|
2022-11-11 02:17:39 +00:00
|
|
|
# Sets the url of website, so that it displays that even when accessed
|
|
|
|
# locally (optional, defaults to hostname you're accessing it on)
|
|
|
|
export site_url=<url>
|
2020-02-16 14:51:00 +00:00
|
|
|
```
|
|
|
|
|
2023-04-08 20:56:42 +00:00
|
|
|
### 3. Build and run it
|
2020-02-14 21:36:50 +00:00
|
|
|
```
|
2023-04-08 20:56:42 +00:00
|
|
|
cd actix
|
|
|
|
cargo run
|
2020-02-14 21:36:50 +00:00
|
|
|
```
|
2020-05-23 17:16:27 +00:00
|
|
|
You can optionally set the port the server listens on by appending `--port=[port]`
|
2020-02-16 14:51:00 +00:00
|
|
|
### 4. Navigate to `http://localhost:4567` in your browser, add links as you wish.
|
2020-02-14 21:36:50 +00:00
|
|
|
|
|
|
|
## Running with docker
|
|
|
|
### `docker run` method
|
2020-05-23 17:54:27 +00:00
|
|
|
0. (Only if you really want to) Build the image
|
2020-02-14 21:36:50 +00:00
|
|
|
```
|
2020-05-23 17:54:27 +00:00
|
|
|
docker build . -t simply-shorten:latest
|
2020-02-14 21:36:50 +00:00
|
|
|
```
|
2020-05-23 17:54:27 +00:00
|
|
|
1. Run the image
|
2020-02-14 21:36:50 +00:00
|
|
|
```
|
2020-03-24 08:07:25 +00:00
|
|
|
docker run -p 4567:4567
|
|
|
|
-e password="password"
|
2020-05-23 17:54:27 +00:00
|
|
|
-d simply-shorten:latest
|
2020-02-14 21:36:50 +00:00
|
|
|
```
|
2020-05-23 17:54:27 +00:00
|
|
|
1.a Make the database file available to host (optional)
|
2020-02-14 21:36:50 +00:00
|
|
|
```
|
2020-04-18 20:53:01 +00:00
|
|
|
touch ./urls.sqlite
|
2020-02-14 21:36:50 +00:00
|
|
|
docker run -p 4567:4567 \
|
2020-03-24 08:07:25 +00:00
|
|
|
-e password="password" \
|
2020-04-18 20:53:01 +00:00
|
|
|
-v ./urls.sqlite:/urls.sqlite \
|
2020-05-23 17:54:27 +00:00
|
|
|
-e db_url=/urls.sqlite \
|
|
|
|
-d simply-shorten:latest
|
2020-02-14 21:36:50 +00:00
|
|
|
```
|
2022-11-11 02:17:39 +00:00
|
|
|
1.b Further, set the URL of your website (optional)
|
|
|
|
```
|
|
|
|
touch ./urls.sqlite
|
|
|
|
docker run -p 4567:4567 \
|
|
|
|
-e password="password" \
|
|
|
|
-v ./urls.sqlite:/urls.sqlite \
|
|
|
|
-e db_url=/urls.sqlite \
|
|
|
|
-e site_url="https://www.example.com" \
|
|
|
|
-d simply-shorten:latest
|
|
|
|
```
|
2020-09-19 08:01:36 +00:00
|
|
|
|
|
|
|
## Disable authentication
|
2023-04-09 22:31:00 +00:00
|
|
|
If you do not define a password environment variable when starting the docker image, authentication
|
|
|
|
will be disabled.
|
2023-04-08 20:56:42 +00:00
|
|
|
|
|
|
|
This if not recommended in actual use however, as it will allow anyone to create new links and delete
|
2020-09-19 08:01:36 +00:00
|
|
|
old ones. This might not seem like a bad idea, until you have hundreds of links
|
|
|
|
pointing to illegal content. Since there are no logs, it's impossible to prove
|
|
|
|
that those links aren't created by you.
|
|
|
|
|
2022-11-11 23:50:12 +00:00
|
|
|
## Notes
|
2023-04-03 18:52:01 +00:00
|
|
|
- It started as a fork of [this project](https://gitlab.com/draganczukp/simply-shorten).
|
2022-11-11 23:50:12 +00:00
|
|
|
- The list of adjectives and names used for random short url generation is a modified
|
|
|
|
version of [this list used by docker](https://github.com/moby/moby/blob/master/pkg/namesgenerator/names-generator.go).
|