Stub API.

This commit is contained in:
Lyle Mantooth 2023-05-15 18:47:31 -04:00
parent 9f30a75d44
commit e9523f6e62
Signed by: IslandUsurper
GPG key ID: 6DB52EAE123A5789
3 changed files with 124 additions and 0 deletions

8
Cargo.toml Normal file
View file

@ -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]

95
flake.lock Normal file
View file

@ -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
}

21
src/main.rs Normal file
View file

@ -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()
}
}