diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..0382191 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "locat" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..38b3990 --- /dev/null +++ b/flake.lock @@ -0,0 +1,95 @@ +{ + "nodes": { + "naersk": { + "inputs": { + "nixpkgs": "nixpkgs" + }, + "locked": { + "lastModified": 1679567394, + "narHash": "sha256-ZvLuzPeARDLiQUt6zSZFGOs+HZmE+3g4QURc8mkBsfM=", + "owner": "nix-community", + "repo": "naersk", + "rev": "88cd22380154a2c36799fe8098888f0f59861a15", + "type": "github" + }, + "original": { + "owner": "nix-community", + "ref": "master", + "repo": "naersk", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1684151413, + "narHash": "sha256-Kqi8ki6PTo5aefiTu5tq7kkh3Hw5Z3WFH7utLQ+IoI8=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "363465f8f9d3b335f9ddb86a895023974d678a9d", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "type": "indirect" + } + }, + "nixpkgs_2": { + "locked": { + "lastModified": 1684151413, + "narHash": "sha256-Kqi8ki6PTo5aefiTu5tq7kkh3Hw5Z3WFH7utLQ+IoI8=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "363465f8f9d3b335f9ddb86a895023974d678a9d", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "naersk": "naersk", + "nixpkgs": "nixpkgs_2", + "utils": "utils" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1681202837, + "narHash": "sha256-H+Rh19JDwRtpVPAWp64F+rlEtxUWBAQW28eAi3SRSzg=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "cfacdce06f30d2b68473a46042957675eebb3401", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..f8a28c9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,21 @@ +use std::net::IpAddr; + +/// Allows geo-locating IPs and keeps analytics. +pub struct Locat {} + +impl Locat { + pub fn new(_geoip_country_db_path: &str, _analytics_db_path: &str0 -> Self { + // TODO: read geoip db, create analytics db + Self {} + } + + /// Converts an address to an ISO 3166-1 alpha-2 country code. + pub fn ip_to_iso_code(&self, _addr: IpAddr) -> Option<&str> { + None + } + + /// Returns a map of country codes to number of requests. + pub fn get_analytics(&self) -> Vec<(String, u64)> { + Default::default() + } +}