From 847648330cc0e7af59fa6923f45222726d404250 Mon Sep 17 00:00:00 2001 From: Vika Date: Sun, 25 Aug 2024 03:04:22 +0300 Subject: Prototype for signing in with IndieAuth The code is really janky and unpolished, the error handling is TERRIBLE, and I think I can't publish it like this. This'll need a refactor, but it'll come tomorrow. --- src/secrets.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/secrets.rs (limited to 'src/secrets.rs') diff --git a/src/secrets.rs b/src/secrets.rs new file mode 100644 index 0000000..c8c9bd7 --- /dev/null +++ b/src/secrets.rs @@ -0,0 +1,17 @@ +pub const ACCESS_TOKEN: &str = "access_token"; +pub const REFRESH_TOKEN: &str = "refresh_token"; + +pub const ME: &str = "me"; +pub const TOKEN_KIND: &str = "token_kind"; +pub const EXPIRES_IN: &str = "expires_in"; +pub const MICROPUB: &str = "micropub"; + +pub fn get_schema() -> libsecret::Schema { + let mut attrs = std::collections::HashMap::new(); + attrs.insert(ME, libsecret::SchemaAttributeType::String); + attrs.insert(TOKEN_KIND, libsecret::SchemaAttributeType::String); + attrs.insert(MICROPUB, libsecret::SchemaAttributeType::String); + attrs.insert(EXPIRES_IN, libsecret::SchemaAttributeType::Integer); + + libsecret::Schema::new("org.indieweb.indieauth.BearerCredential", libsecret::SchemaFlags::NONE, attrs) +} -- cgit 1.4.1