5 Commits

Author SHA1 Message Date
17a9c5835e up 2025-08-06 19:31:38 +02:00
b8766e37c1 up 2025-08-06 18:19:40 +02:00
fb8825249a up 2025-08-06 18:18:13 +02:00
961d8ecbb0 up 2025-08-06 18:18:03 +02:00
ca29d9fe53 up 2025-08-06 18:17:50 +02:00
5 changed files with 20 additions and 4 deletions

2
.gitignore vendored
View File

@@ -1,2 +1,2 @@
data/ data/
./shortify/ shortify/

7
LICENSE Normal file
View File

@@ -0,0 +1,7 @@
Copyright 2025 Tijl
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.

View File

@@ -1,7 +1,10 @@
package main package main
import ( import (
"fmt"
"git.tijl.dev/tijl/shortify" "git.tijl.dev/tijl/shortify"
"git.tijl.dev/tijl/shortify/pkg/generation"
"github.com/gofiber/fiber/v2" "github.com/gofiber/fiber/v2"
) )
@@ -13,6 +16,9 @@ func main() {
panic(err) panic(err)
} }
// example decoding
fmt.Println(generation.DecodeBase62("11uPoqA1W"))
// listen the admin interface // listen the admin interface
unixListener, err := shortify.GetUnixListener("./shortify/admin.sock") unixListener, err := shortify.GetUnixListener("./shortify/admin.sock")

View File

@@ -7,10 +7,10 @@ import (
) )
const ( const (
idSize = 4 // 4 bytes for random part idSize = 6 // 4 bytes for random part
prefixSize = 2 // 2 bytes for client prefix prefixSize = 2 // 2 bytes for client prefix
rawIDLength = prefixSize + idSize // total 6 bytes rawIDLength = prefixSize + idSize // total 6 bytes
base62Len = 8 // 6 bytes encoded in base62 ~ 8 chars //base62Len = 8 // 6 bytes encoded in base62 ~ 8 chars
poolSize = 10000 poolSize = 10000
) )

View File

@@ -23,6 +23,9 @@ func (s *Server) Admin() *fiber.App {
a.Post("/shorten", func(c *fiber.Ctx) error { a.Post("/shorten", func(c *fiber.Ctx) error {
shortUrl := c.Query("s") shortUrl := c.Query("s")
if shortUrl == "" {
shortUrl = s.serverGen.NextID()
}
longUrl := string(c.Body()) longUrl := string(c.Body())
return s.storage.Put(shortUrl, longUrl) return s.storage.Put(shortUrl, longUrl)