Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codingitwrong/shorten_rb
A simple Rails link shortener that respects privacy. Easy to self-host on Heroku.
https://github.com/codingitwrong/shorten_rb
Last synced: 2 days ago
JSON representation
A simple Rails link shortener that respects privacy. Easy to self-host on Heroku.
- Host: GitHub
- URL: https://github.com/codingitwrong/shorten_rb
- Owner: CodingItWrong
- Created: 2022-06-04T12:23:11.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-16T12:54:37.000Z (14 days ago)
- Last Synced: 2025-01-16T14:19:35.300Z (14 days ago)
- Language: Ruby
- Homepage:
- Size: 236 KB
- Stars: 5
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# shorten_rb
A simple Rails link shortener that respects privacy. Easy to self-host on Heroku.
## Requirements
- Ruby
- Postgres## Installation
`bin/setup`
## Running
`rails s`
## Usage
Redirects are configured with the `Link` model. A `Link` has the following attributes:
- `slug`, the segment in the URL. When running locally this will be at `http://localhost:3000/[slug]`, and in production it will be the path under your deployed server
- `destination`, the full URL to redirect to
- An optional `domain`, which limits the slug matching to a single domain. This allows you to point multiple domains to the same deployed instance, and have the same slug on different domains go to different destinationsThere is no user interface for configuring `Link`s; use the Rails console.
Redirects are always sent as `302 Found`. This ensures they aren't permanently cached, so you can change the redirect later.
Accesses are logged as a `Hit` model. No information about the request is logged except for the time the request was made.
## Helpful Queries
Number of hits per link:
```ruby
Link.select('links.id, domain, slug, COUNT(hits.id) AS hit_count').joins(:hits).group('links.id').order('hit_count DESC').map { |l| "#{l.domain}/#{l.slug} -- #{l.hits.count} hits" }
```## License
MIT