web3-proxy/web3_proxy/src/frontend/users.rs

355 lines
12 KiB
Rust
Raw Normal View History

2022-07-14 00:49:57 +03:00
// So the API needs to show for any given user:
// - show balance in USD
// - show deposits history (currency, amounts, transaction id)
// - show number of requests used (so we can calculate average spending over a month, burn rate for a user etc, something like "Your balance will be depleted in xx days)
// - the email address of a user if he opted in to get contacted via email
// - all the monitoring and stats but that will come from someplace else if I understand corectly?
// I wonder how we handle payment
// probably have to do manual withdrawals
2022-09-24 08:53:45 +03:00
use super::authorization::{login_is_authorized, UserKey};
use super::errors::FrontendResult;
2022-09-24 08:53:45 +03:00
use crate::app::Web3ProxyApp;
2022-08-27 08:42:25 +03:00
use anyhow::Context;
2022-08-11 04:53:27 +03:00
use axum::{
2022-08-21 11:18:57 +03:00
extract::{Path, Query},
headers::{authorization::Bearer, Authorization},
response::IntoResponse,
Extension, Json, TypedHeader,
2022-08-11 04:53:27 +03:00
};
2022-08-04 04:10:27 +03:00
use axum_client_ip::ClientIp;
2022-08-16 22:29:00 +03:00
use axum_macros::debug_handler;
2022-08-27 08:42:25 +03:00
use entities::{user, user_keys};
2022-08-04 04:10:27 +03:00
use ethers::{prelude::Address, types::Bytes};
2022-08-19 23:18:12 +03:00
use hashbrown::HashMap;
2022-09-15 20:57:24 +03:00
use http::StatusCode;
use redis_rate_limiter::redis::AsyncCommands;
2022-08-27 08:42:25 +03:00
use sea_orm::{ActiveModelTrait, ColumnTrait, EntityTrait, QueryFilter, TransactionTrait};
use serde::{Deserialize, Serialize};
use siwe::Message;
2022-08-27 05:13:36 +03:00
use std::ops::Add;
2022-08-04 04:10:27 +03:00
use std::sync::Arc;
use time::{Duration, OffsetDateTime};
2022-08-21 11:18:57 +03:00
use ulid::Ulid;
// TODO: how do we customize axum's error response? I think we probably want an enum that implements IntoResponse instead
2022-08-16 22:29:00 +03:00
#[debug_handler]
pub async fn get_login(
Extension(app): Extension<Arc<Web3ProxyApp>>,
2022-08-17 00:43:39 +03:00
ClientIp(ip): ClientIp,
// TODO: what does axum's error handling look like if the path fails to parse?
// TODO: allow ENS names here?
2022-08-19 23:18:12 +03:00
Path(mut params): Path<HashMap<String, String>>,
2022-08-17 00:43:39 +03:00
) -> FrontendResult {
2022-09-28 06:35:55 +03:00
// give these named variables so that we drop them at the very end of this function
let (_, _semaphore) = login_is_authorized(&app, ip).await?;
2022-08-17 00:43:39 +03:00
// at first i thought about checking that user_address is in our db
2022-08-21 11:18:57 +03:00
// but theres no need to separate the registration and login flows
2022-08-17 00:43:39 +03:00
// its a better UX to just click "login with ethereum" and have the account created if it doesn't exist
// we can prompt for an email and and payment after they log in
2022-08-21 11:18:57 +03:00
// create a message and save it in redis
// TODO: how many seconds? get from config?
// TODO: while developing, we put a giant number here
let expire_seconds: usize = 28800;
2022-08-21 11:18:57 +03:00
let nonce = Ulid::new();
let issued_at = OffsetDateTime::now_utc();
let expiration_time = issued_at.add(Duration::new(expire_seconds as i64, 0));
2022-09-20 04:37:15 +03:00
let user_address: Address = params
.remove("user_address")
.context("impossible")?
.parse()
.context("bad input")?;
2022-08-17 00:43:39 +03:00
// TODO: get most of these from the app config
let message = Message {
domain: "staging.llamanodes.com".parse().unwrap(),
address: user_address.to_fixed_bytes(),
statement: Some("🦙🦙🦙🦙🦙".to_string()),
uri: "https://staging.llamanodes.com/".parse().unwrap(),
version: siwe::Version::V1,
chain_id: 1,
expiration_time: Some(expiration_time.into()),
issued_at: issued_at.into(),
nonce: nonce.to_string(),
not_before: None,
request_id: None,
resources: vec![],
};
let session_key = format!("pending:{}", nonce);
// TODO: if no redis server, store in local cache?
2022-08-21 11:18:57 +03:00
// the address isn't enough. we need to save the actual message so we can read the nonce
// TODO: what message format is the most efficient to store in redis? probably eip191_bytes
// we add 1 to expire_seconds just to be sure redis has the key for the full expiration_time
app.redis_conn()
.await?
.set_ex(session_key, message.to_string(), expire_seconds + 1)
.await?;
2022-08-19 23:18:12 +03:00
// there are multiple ways to sign messages and not all wallets support them
let message_eip = params
.remove("message_eip")
.unwrap_or_else(|| "eip4361".to_string());
let message: String = match message_eip.as_str() {
"eip191_bytes" => Bytes::from(message.eip191_bytes().unwrap()).to_string(),
2022-08-19 23:18:12 +03:00
"eip191_hash" => Bytes::from(&message.eip191_hash().unwrap()).to_string(),
2022-09-14 09:18:13 +03:00
"eip4361" => message.to_string(),
2022-09-10 03:58:33 +03:00
_ => {
// TODO: this needs the correct error code in the response
return Err(anyhow::anyhow!("invalid message eip given").into());
}
2022-08-19 23:18:12 +03:00
};
Ok(message.into_response())
2022-08-16 22:29:00 +03:00
}
2022-08-04 02:17:02 +03:00
2022-08-21 11:18:57 +03:00
/// Query params to our `post_login` handler.
#[derive(Debug, Deserialize)]
pub struct PostLoginQuery {
invite_code: Option<String>,
}
/// JSON body to our `post_login` handler.
2022-09-24 06:59:21 +03:00
/// TODO: this should be an enum with the different login methods having different structs
2022-08-21 11:18:57 +03:00
#[derive(Deserialize)]
pub struct PostLogin {
address: Address,
msg: String,
sig: Bytes,
2022-08-21 12:39:38 +03:00
// TODO: do we care about these? we should probably check the version is something we expect
// version: String,
// signer: String,
2022-08-21 11:18:57 +03:00
}
/// TODO: what information should we return?
2022-08-27 08:42:25 +03:00
#[derive(Serialize)]
pub struct PostLoginResponse {
bearer_token: Ulid,
2022-09-24 08:53:45 +03:00
api_keys: Vec<UserKey>,
2022-08-27 08:42:25 +03:00
}
2022-08-21 11:18:57 +03:00
/// Post to the user endpoint to register or login.
/// It is recommended to save the returned bearer this in a cookie and send bac
#[debug_handler]
2022-08-21 11:18:57 +03:00
pub async fn post_login(
Extension(app): Extension<Arc<Web3ProxyApp>>,
ClientIp(ip): ClientIp,
2022-08-21 11:18:57 +03:00
Json(payload): Json<PostLogin>,
Query(query): Query<PostLoginQuery>,
2022-08-21 12:39:38 +03:00
) -> FrontendResult {
2022-09-28 06:35:55 +03:00
// give these named variables so that we drop them at the very end of this function
let (_, _semaphore) = login_is_authorized(&app, ip).await?;
2022-08-04 04:10:27 +03:00
2022-08-21 11:18:57 +03:00
if let Some(invite_code) = &app.config.invite_code {
// we don't do per-user referral codes because we shouldn't collect what we don't need.
// we don't need to build a social graph between addresses like that.
if query.invite_code.as_ref() != Some(invite_code) {
todo!("if address is already registered, allow login! else, error")
}
2022-08-04 04:10:27 +03:00
}
2022-08-21 11:18:57 +03:00
// we can't trust that they didn't tamper with the message in some way
let their_msg: siwe::Message = payload.msg.parse().unwrap();
let their_sig: [u8; 65] = payload.sig.as_ref().try_into().unwrap();
// fetch the message we gave them from our redis
2022-08-17 02:03:50 +03:00
// TODO: use getdel
let our_msg: String = app.redis_conn().await?.get(&their_msg.nonce).await?;
2022-08-17 02:03:50 +03:00
2022-08-21 11:18:57 +03:00
let our_msg: siwe::Message = our_msg.parse().unwrap();
2022-08-17 02:03:50 +03:00
2022-08-21 11:18:57 +03:00
// check the domain and a nonce. let timestamp be automatic
if let Err(e) = their_msg.verify(their_sig, Some(&our_msg.domain), Some(&our_msg.nonce), None) {
2022-08-04 04:10:27 +03:00
// message cannot be correctly authenticated
todo!("proper error message: {}", e)
}
2022-08-27 08:42:25 +03:00
let bearer_token = Ulid::new();
2022-09-24 07:31:06 +03:00
let db = app.db_conn().context("Getting database connection")?;
2022-07-14 00:49:57 +03:00
2022-08-27 08:42:25 +03:00
// TODO: limit columns or load whole user?
let u = user::Entity::find()
.filter(user::Column::Address.eq(our_msg.address.as_ref()))
.one(db)
.await
.unwrap();
2022-08-04 02:17:02 +03:00
let (u, _uks, response) = match u {
2022-08-27 08:42:25 +03:00
None => {
let txn = db.begin().await?;
2022-08-04 02:17:02 +03:00
2022-08-27 08:42:25 +03:00
// the only thing we need from them is an address
// everything else is optional
let u = user::ActiveModel {
address: sea_orm::Set(payload.address.to_fixed_bytes().into()),
..Default::default()
};
2022-08-17 02:03:50 +03:00
2022-08-27 08:42:25 +03:00
let u = u.insert(&txn).await?;
2022-08-17 02:03:50 +03:00
2022-09-24 08:53:45 +03:00
let user_key = UserKey::new();
2022-08-27 08:42:25 +03:00
let uk = user_keys::ActiveModel {
user_id: sea_orm::Set(u.id),
2022-09-24 08:53:45 +03:00
api_key: sea_orm::Set(user_key.into()),
2022-08-27 08:42:25 +03:00
requests_per_minute: sea_orm::Set(app.config.default_requests_per_minute),
..Default::default()
};
2022-08-21 11:18:57 +03:00
2022-08-27 08:42:25 +03:00
// TODO: if this fails, revert adding the user, too
let uk = uk
.insert(&txn)
.await
.context("Failed saving new user key")?;
2022-08-17 02:03:50 +03:00
let uks = vec![uk];
2022-08-27 08:42:25 +03:00
txn.commit().await?;
2022-08-16 20:47:04 +03:00
2022-08-27 08:42:25 +03:00
let response_json = PostLoginResponse {
bearer_token,
2022-09-24 08:53:45 +03:00
api_keys: uks.iter().map(|uk| uk.api_key.into()).collect(),
2022-08-27 08:42:25 +03:00
};
let response = (StatusCode::CREATED, Json(response_json)).into_response();
(u, uks, response)
2022-08-27 08:42:25 +03:00
}
Some(u) => {
// the user is already registered
let uks = user_keys::Entity::find()
2022-08-27 08:42:25 +03:00
.filter(user_keys::Column::UserId.eq(u.id))
.all(db)
2022-08-27 08:42:25 +03:00
.await
.context("failed loading user's key")?;
2022-08-27 08:42:25 +03:00
let response_json = PostLoginResponse {
bearer_token,
2022-09-24 08:53:45 +03:00
api_keys: uks.iter().map(|uk| uk.api_key.into()).collect(),
2022-08-27 08:42:25 +03:00
};
let response = (StatusCode::OK, Json(response_json)).into_response();
(u, uks, response)
2022-08-27 08:42:25 +03:00
}
2022-08-23 21:51:42 +03:00
};
// add bearer to redis
2022-08-27 08:42:25 +03:00
let mut redis_conn = app.redis_conn().await?;
let bearer_redis_key = format!("bearer:{}", bearer_token);
2022-09-03 22:43:19 +03:00
// expire in 4 weeks
// TODO: get expiration time from app config
// TODO: do we use this?
redis_conn
.set_ex(bearer_redis_key, u.id.to_string(), 2_419_200)
.await?;
2022-08-23 21:51:42 +03:00
Ok(response)
2022-07-14 00:49:57 +03:00
}
/// Log out the user connected to the given Authentication header.
#[debug_handler]
pub async fn get_logout(
Extension(app): Extension<Arc<Web3ProxyApp>>,
TypedHeader(Authorization(bearer)): TypedHeader<Authorization<Bearer>>,
) -> FrontendResult {
2022-09-24 07:31:06 +03:00
let mut redis_conn = app.redis_conn().await?;
// TODO: i don't like this. move this to a helper function so it is less fragile
let bearer_cache_key = format!("bearer:{}", bearer.token());
redis_conn.del(bearer_cache_key).await?;
// TODO: what should the response be? probably json something
Ok("goodbye".into_response())
}
2022-08-21 11:18:57 +03:00
/// the JSON input to the `post_user` handler
2022-09-05 04:52:59 +03:00
/// This handles updating
2022-07-14 00:49:57 +03:00
#[derive(Deserialize)]
2022-08-21 11:18:57 +03:00
pub struct PostUser {
2022-08-23 22:08:47 +03:00
primary_address: Address,
2022-08-21 11:18:57 +03:00
// TODO: make sure the email address is valid. probably have a "verified" column in the database
2022-07-14 00:49:57 +03:00
email: Option<String>,
2022-08-21 11:18:57 +03:00
// TODO: make them sign this JSON? cookie in session id is hard because its on a different domain
}
#[debug_handler]
2022-09-05 04:52:59 +03:00
/// post to the user endpoint to modify your existing account
2022-08-21 11:18:57 +03:00
pub async fn post_user(
TypedHeader(Authorization(bearer_token)): TypedHeader<Authorization<Bearer>>,
2022-08-23 21:51:42 +03:00
ClientIp(ip): ClientIp,
Extension(app): Extension<Arc<Web3ProxyApp>>,
Json(payload): Json<PostUser>,
2022-08-21 11:18:57 +03:00
) -> FrontendResult {
2022-09-28 06:35:55 +03:00
// give these named variables so that we drop them at the very end of this function
let (_, _semaphore) = login_is_authorized(&app, ip).await?;
2022-08-21 11:18:57 +03:00
2022-09-05 04:52:59 +03:00
let user = ProtectedAction::PostUser
2022-08-27 08:42:25 +03:00
.verify(app.as_ref(), bearer_token, &payload.primary_address)
.await?;
2022-09-05 04:52:59 +03:00
let mut user: user::ActiveModel = user.into();
// TODO: rate limit by user, too?
2022-09-28 06:35:55 +03:00
// TODO: allow changing the primary address, too. require a message from the new address to finish the change
2022-09-05 04:52:59 +03:00
if let Some(x) = payload.email {
2022-09-28 06:35:55 +03:00
// TODO: only Set if no change
2022-09-05 04:52:59 +03:00
if x.is_empty() {
user.email = sea_orm::Set(None);
} else {
user.email = sea_orm::Set(Some(x));
}
}
2022-09-24 07:31:06 +03:00
let db = app.db_conn().context("Getting database connection")?;
2022-09-05 04:52:59 +03:00
user.save(db).await?;
2022-08-23 21:51:42 +03:00
todo!("finish post_user");
2022-07-14 00:49:57 +03:00
}
2022-08-23 22:08:47 +03:00
// TODO: what roles should exist?
enum ProtectedAction {
PostUser,
}
2022-08-23 22:08:47 +03:00
impl ProtectedAction {
async fn verify(
self,
app: &Web3ProxyApp,
2022-09-24 07:31:06 +03:00
// TODO: i don't think we want Bearer here. we want user_key and a helper for bearer -> user_key
bearer: Bearer,
primary_address: &Address,
2022-09-05 04:52:59 +03:00
) -> anyhow::Result<user::Model> {
2022-08-27 08:42:25 +03:00
// get the attached address from redis for the given auth_token.
let mut redis_conn = app.redis_conn().await?;
2022-09-24 07:31:06 +03:00
let bearer_cache_key = format!("bearer:{}", bearer.token());
let user_key_id: Option<u64> = redis_conn
.get(bearer_cache_key)
.await
.context("fetching bearer cache key from redis")?;
// TODO: if auth_address == primary_address, allow
// TODO: if auth_address != primary_address, only allow if they are a secondary user with the correct role
todo!("verify token for the given user");
}
2022-08-23 22:08:47 +03:00
}