2023-01-26 08:24:09 +03:00
|
|
|
//! `SeaORM` Entity. Generated by sea-orm-codegen 0.10.7
|
2022-08-03 03:31:47 +03:00
|
|
|
|
2023-01-26 08:24:09 +03:00
|
|
|
use super::sea_orm_active_enums::TrackingLevel;
|
2022-12-14 05:13:23 +03:00
|
|
|
use crate::serialization;
|
2022-08-03 03:31:47 +03:00
|
|
|
use sea_orm::entity::prelude::*;
|
2022-08-05 22:47:50 +03:00
|
|
|
use serde::{Deserialize, Serialize};
|
2022-08-03 03:31:47 +03:00
|
|
|
|
2022-11-01 21:54:39 +03:00
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Serialize, Deserialize)]
|
|
|
|
#[sea_orm(table_name = "rpc_key")]
|
2022-08-03 03:31:47 +03:00
|
|
|
pub struct Model {
|
2022-08-06 03:07:12 +03:00
|
|
|
#[sea_orm(primary_key)]
|
2022-08-13 00:00:26 +03:00
|
|
|
pub id: u64,
|
|
|
|
pub user_id: u64,
|
2022-08-04 02:17:02 +03:00
|
|
|
#[sea_orm(unique)]
|
2022-12-14 05:13:23 +03:00
|
|
|
#[serde(serialize_with = "serialization::uuid_as_ulid")]
|
2022-11-01 21:54:39 +03:00
|
|
|
pub secret_key: Uuid,
|
2022-08-05 22:47:50 +03:00
|
|
|
pub description: Option<String>,
|
|
|
|
pub private_txs: bool,
|
|
|
|
pub active: bool,
|
2022-09-24 03:14:35 +03:00
|
|
|
#[sea_orm(column_type = "Text", nullable)]
|
2022-09-23 08:22:33 +03:00
|
|
|
pub allowed_ips: Option<String>,
|
2022-09-24 03:14:35 +03:00
|
|
|
#[sea_orm(column_type = "Text", nullable)]
|
2022-09-23 08:22:33 +03:00
|
|
|
pub allowed_origins: Option<String>,
|
2022-09-24 03:14:35 +03:00
|
|
|
#[sea_orm(column_type = "Text", nullable)]
|
2022-09-23 08:22:33 +03:00
|
|
|
pub allowed_referers: Option<String>,
|
2022-09-24 03:14:35 +03:00
|
|
|
#[sea_orm(column_type = "Text", nullable)]
|
2022-09-23 08:22:33 +03:00
|
|
|
pub allowed_user_agents: Option<String>,
|
2022-12-14 05:13:23 +03:00
|
|
|
pub log_revert_chance: f64,
|
2023-01-26 08:24:09 +03:00
|
|
|
// TODO: rename this with a migration
|
|
|
|
pub log_level: TrackingLevel,
|
2022-08-03 03:31:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
|
|
pub enum Relation {
|
2022-12-14 05:13:23 +03:00
|
|
|
#[sea_orm(has_many = "super::revert_log::Entity")]
|
|
|
|
RevertLog,
|
|
|
|
#[sea_orm(has_many = "super::rpc_accounting::Entity")]
|
|
|
|
RpcAccounting,
|
2023-01-26 08:24:09 +03:00
|
|
|
#[sea_orm(has_many = "super::rpc_accounting_v2::Entity")]
|
|
|
|
RpcAccountingV2,
|
User Balance + Referral Logic (#44)
* will implement balance topup endpoint
* will quickly fix other PR reviews
* merging from master
* will finish up godmoe
* will finish up login
* added logic to top up balance (first iteration)
* should implement additional columns soon (currency, amount, tx-hash), as well as a new table for spend
* updated migrations, will account for spend next
* get back to this later
* will merge PR from stats-v2
* stats v2
rebased all my commits and squashed them down to one
* cargo upgrade
* added migrtation for spend in accounting table. will run test-deposit next
* trying to get request from polygon
* first iteration /user/balance/:tx_hash works, needs to add accepted tokens next
* creating the referral code seems to work
* will now check if spending enough credits will lead to both parties receiving credits
* rpcstats takes care of accounting for spend data
* removed track spend from table
* Revert "removed track spend from table"
This reverts commit a50802d6ae75f786864c5ec42d0ceb2cb27124ed.
* Revert "rpcstats takes care of accounting for spend data"
This reverts commit 1cec728bf241e4cfd24351134637ed81c1a5a10b.
* removed rpc request table entity
* updated referral code to use ulid s
* credits used are aggregated
* added a bunch of fields to referrer
* added database logic whenever an aggregate stats is added. will have to iterate over this a couple times i think. go to (1) detecting accepted stables next, (2) fix influxdb bug and (3) start to write test
* removed track spend as this will occur in the database
* will first work on "balance", then referral. these should really be treated as two separate PRs (although already convoluted)
* balance logic initial commit
* breaking WIP, changing the RPC call logic functions
* will start testing next
* got rid of warnings & lint
* will proceed with subtracting / adding to balance
* added decimal points, balance tracking seems to work
* will beautify code a bit
* removed deprecated dependency, and added topic + deposit contract to app.yaml
* brownie test suite does not rely on local contract files it pulls all from polygonscan
* will continue with referral
* should perhaps (in a future revision) recordhow much the referees got for free. marking referrals seems to work rn
* user is upgraded to premium if they deposit more than 10$. we dont accept more than $10M in a single tx
* will start PR, referral seems to be fine so far, perhaps up to some numbers that still may need tweaking
* will start PR
* removed rogue comments, cleaned up payments a bit
* changes before PR
* apply stats
* added unique constraint
* some refactoring such that the user file is not too bloated
* compiling
* progress with subusers, creating a table entry seems to work
* good response type is there as well now, will work on getters from primary user and secondary user next
* subuser logic also seems fine now
* downgrade logic
* fixed bug influxdb does not support different types in same query (which makes sense)
* WIP temporary commit
* merging with PR
* Delete daemon.rs
there are multiple daemons now, so this was moved to `proxyd`
* will remove request clone to &mut
* multiple request handles for payment
* making requests still seem fine
* removed redundant commented out bits
* added deposit endpoint, added deposit amount and deposit user, untested yet
* small bug with downgrade tier id
* will add authorization so balance can be received for users
* balance history should be set now too
* will check balance over time again
* subususer can see rpc key balance if admin or owner
* stats also seems to work fine now with historical balance
* things seem to be building and working
* removed clone from OpenRequestHandle
* removed influxdb from workspace members
* changed config files
* reran sea-orm generate entities, added a foreign key, should be proper now
* removed contract from commit
* made deposit contract optional
* added topic in polygon dev
* changed deposit contract to deposit factory contract
* added selfrelation on user_tier
* added payment required
* changed chain id to u64
* add wss in polygon llamarpc
* removed origin and method from the table
* added onchain transactions naming (and forgot to add a migration before)
* changed foreign key to be the referrer (id), not the code itself
* forgot to add id as the target foreign key
* WIP adding cache to update role
* fixed merge conflicts
---------
Co-authored-by: Bryan Stitt <bryan@llamanodes.com>
Co-authored-by: Bryan Stitt <bryan@stitthappens.com>
2023-05-12 19:45:15 +03:00
|
|
|
#[sea_orm(has_many = "super::secondary_user::Entity")]
|
|
|
|
SecondaryUser,
|
2022-08-03 03:31:47 +03:00
|
|
|
#[sea_orm(
|
|
|
|
belongs_to = "super::user::Entity",
|
2022-08-06 03:07:12 +03:00
|
|
|
from = "Column::UserId",
|
|
|
|
to = "super::user::Column::Id",
|
2022-08-03 03:31:47 +03:00
|
|
|
on_update = "NoAction",
|
|
|
|
on_delete = "NoAction"
|
|
|
|
)]
|
|
|
|
User,
|
|
|
|
}
|
|
|
|
|
2022-11-01 21:54:39 +03:00
|
|
|
impl Related<super::revert_log::Entity> for Entity {
|
2022-09-24 03:14:35 +03:00
|
|
|
fn to() -> RelationDef {
|
2022-11-01 21:54:39 +03:00
|
|
|
Relation::RevertLog.def()
|
2022-09-24 03:14:35 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-10 07:15:07 +03:00
|
|
|
impl Related<super::rpc_accounting::Entity> for Entity {
|
|
|
|
fn to() -> RelationDef {
|
|
|
|
Relation::RpcAccounting.def()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-26 08:24:09 +03:00
|
|
|
impl Related<super::rpc_accounting_v2::Entity> for Entity {
|
|
|
|
fn to() -> RelationDef {
|
|
|
|
Relation::RpcAccountingV2.def()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
User Balance + Referral Logic (#44)
* will implement balance topup endpoint
* will quickly fix other PR reviews
* merging from master
* will finish up godmoe
* will finish up login
* added logic to top up balance (first iteration)
* should implement additional columns soon (currency, amount, tx-hash), as well as a new table for spend
* updated migrations, will account for spend next
* get back to this later
* will merge PR from stats-v2
* stats v2
rebased all my commits and squashed them down to one
* cargo upgrade
* added migrtation for spend in accounting table. will run test-deposit next
* trying to get request from polygon
* first iteration /user/balance/:tx_hash works, needs to add accepted tokens next
* creating the referral code seems to work
* will now check if spending enough credits will lead to both parties receiving credits
* rpcstats takes care of accounting for spend data
* removed track spend from table
* Revert "removed track spend from table"
This reverts commit a50802d6ae75f786864c5ec42d0ceb2cb27124ed.
* Revert "rpcstats takes care of accounting for spend data"
This reverts commit 1cec728bf241e4cfd24351134637ed81c1a5a10b.
* removed rpc request table entity
* updated referral code to use ulid s
* credits used are aggregated
* added a bunch of fields to referrer
* added database logic whenever an aggregate stats is added. will have to iterate over this a couple times i think. go to (1) detecting accepted stables next, (2) fix influxdb bug and (3) start to write test
* removed track spend as this will occur in the database
* will first work on "balance", then referral. these should really be treated as two separate PRs (although already convoluted)
* balance logic initial commit
* breaking WIP, changing the RPC call logic functions
* will start testing next
* got rid of warnings & lint
* will proceed with subtracting / adding to balance
* added decimal points, balance tracking seems to work
* will beautify code a bit
* removed deprecated dependency, and added topic + deposit contract to app.yaml
* brownie test suite does not rely on local contract files it pulls all from polygonscan
* will continue with referral
* should perhaps (in a future revision) recordhow much the referees got for free. marking referrals seems to work rn
* user is upgraded to premium if they deposit more than 10$. we dont accept more than $10M in a single tx
* will start PR, referral seems to be fine so far, perhaps up to some numbers that still may need tweaking
* will start PR
* removed rogue comments, cleaned up payments a bit
* changes before PR
* apply stats
* added unique constraint
* some refactoring such that the user file is not too bloated
* compiling
* progress with subusers, creating a table entry seems to work
* good response type is there as well now, will work on getters from primary user and secondary user next
* subuser logic also seems fine now
* downgrade logic
* fixed bug influxdb does not support different types in same query (which makes sense)
* WIP temporary commit
* merging with PR
* Delete daemon.rs
there are multiple daemons now, so this was moved to `proxyd`
* will remove request clone to &mut
* multiple request handles for payment
* making requests still seem fine
* removed redundant commented out bits
* added deposit endpoint, added deposit amount and deposit user, untested yet
* small bug with downgrade tier id
* will add authorization so balance can be received for users
* balance history should be set now too
* will check balance over time again
* subususer can see rpc key balance if admin or owner
* stats also seems to work fine now with historical balance
* things seem to be building and working
* removed clone from OpenRequestHandle
* removed influxdb from workspace members
* changed config files
* reran sea-orm generate entities, added a foreign key, should be proper now
* removed contract from commit
* made deposit contract optional
* added topic in polygon dev
* changed deposit contract to deposit factory contract
* added selfrelation on user_tier
* added payment required
* changed chain id to u64
* add wss in polygon llamarpc
* removed origin and method from the table
* added onchain transactions naming (and forgot to add a migration before)
* changed foreign key to be the referrer (id), not the code itself
* forgot to add id as the target foreign key
* WIP adding cache to update role
* fixed merge conflicts
---------
Co-authored-by: Bryan Stitt <bryan@llamanodes.com>
Co-authored-by: Bryan Stitt <bryan@stitthappens.com>
2023-05-12 19:45:15 +03:00
|
|
|
impl Related<super::secondary_user::Entity> for Entity {
|
|
|
|
fn to() -> RelationDef {
|
|
|
|
Relation::SecondaryUser.def()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-14 05:13:23 +03:00
|
|
|
impl Related<super::user::Entity> for Entity {
|
|
|
|
fn to() -> RelationDef {
|
|
|
|
Relation::User.def()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-03 03:31:47 +03:00
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|