Golink

The Golink crate is an engine for resolving URLs for link shortening services. You provide a link to expand and a function for mapping short URLs to long URLs, and this crate will:

This resolver performs all the functionality described in Tailscale's Golink project

This crate doesn't provide a web service or an interface for creating shortened links; it only provides an algorithm for resolving short URLs to long URLs.

Usage

The Golink crate doesn't care how you store or retrieve long URLs given a short URL; you can store them in memory, in a database, or on disk, as long as they are retrievable from within a closure you pass into the resolve() function:

```rust fn lookup(input: &str) -> Option { if input == "foo" { return Some("http://example.com".to_string()); } None }

let resolved = golink::resolve("http://go/foo", &lookup)

match computed { Ok(GolinkResolution::RedirectRequest(url)) => { // Redirect to url }

Ok(GolinkResolution::MetadataRequest(key)) => { // key is the original shortlink. // Return JSON that displays metadata/analytics about key }

Err(e) => { // Return a 400 error to the user, with a message based on e } } ```