web3-proxy/migration/src/m20220101_000001_create_table.rs
2022-08-04 17:18:54 +00:00

216 lines
6.6 KiB
Rust

use sea_orm_migration::prelude::*;
#[derive(DeriveMigrationName)]
pub struct Migration;
#[async_trait::async_trait]
impl MigrationTrait for Migration {
async fn up(&self, manager: &SchemaManager) -> Result<(), DbErr> {
// users
manager
.create_table(
Table::create()
.table(User::Table)
.col(
ColumnDef::new(User::Uuid)
.uuid()
.not_null()
.extra("DEFAULT (UUID_TO_BIN(UUID()))".to_string())
.primary_key(),
)
.col(
ColumnDef::new(User::Address)
.string_len(42)
.not_null()
.unique_key(),
)
.col(ColumnDef::new(User::Description).string().not_null())
.col(ColumnDef::new(User::Email).string())
.to_owned(),
)
.await?;
// secondary users
manager
.create_table(
Table::create()
.table(SecondaryUser::Table)
.col(
ColumnDef::new(SecondaryUser::Uuid)
.uuid()
.not_null()
.extra("DEFAULT (UUID_TO_BIN(UUID()))".to_string())
.primary_key(),
)
.col(ColumnDef::new(SecondaryUser::UserId).uuid().not_null())
.col(
ColumnDef::new(SecondaryUser::Address)
.string_len(42)
.not_null(),
)
.col(
ColumnDef::new(SecondaryUser::Description)
.string()
.not_null(),
)
.col(ColumnDef::new(SecondaryUser::Email).string().not_null())
.col(
ColumnDef::new(SecondaryUser::Role)
.enumeration("role", ["owner", "admin", "collaborator"])
.not_null(),
)
.index(sea_query::Index::create().col(SecondaryUser::Address))
.foreign_key(
sea_query::ForeignKey::create()
.from(SecondaryUser::Table, SecondaryUser::UserId)
.to(User::Table, User::Uuid),
)
.to_owned(),
)
.await?;
// block list for the transaction firewall
manager
.create_table(
Table::create()
.table(BlockList::Table)
.col(
ColumnDef::new(BlockList::Uuid)
.uuid()
.not_null()
.extra("DEFAULT (UUID_TO_BIN(UUID()))".to_string())
.primary_key(),
)
.col(
ColumnDef::new(BlockList::Address)
.string()
.not_null()
.unique_key(),
)
.col(ColumnDef::new(BlockList::Description).string().not_null())
.to_owned(),
)
.await?;
// api keys
manager
.create_table(
Table::create()
.table(UserKeys::Table)
.col(
ColumnDef::new(UserKeys::Uuid)
.uuid()
.not_null()
.extra("DEFAULT (UUID_TO_BIN(UUID()))".to_string())
.primary_key(),
)
.col(ColumnDef::new(UserKeys::UserUuid).uuid().not_null())
.col(
ColumnDef::new(UserKeys::ApiKey)
.string_len(32)
.not_null()
.unique_key(),
)
.col(ColumnDef::new(UserKeys::Description).string().not_null())
.col(
ColumnDef::new(UserKeys::PrivateTxs)
.boolean()
.default(true)
.not_null(),
)
.col(
ColumnDef::new(UserKeys::Active)
.boolean()
.default(true)
.not_null(),
)
.index(sea_query::Index::create().col(UserKeys::Active))
.foreign_key(
sea_query::ForeignKey::create()
.from(UserKeys::Table, UserKeys::UserUuid)
.to(User::Table, User::Uuid),
)
.to_owned(),
)
.await?;
// it worked!
Ok(())
}
async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> {
manager
.drop_table(Table::drop().table(User::Table).to_owned())
.await?;
manager
.drop_table(Table::drop().table(SecondaryUser::Table).to_owned())
.await?;
manager
.drop_table(Table::drop().table(BlockList::Table).to_owned())
.await?;
manager
.drop_table(Table::drop().table(UserKeys::Table).to_owned())
.await?;
Ok(())
}
}
/// Learn more at https://docs.rs/sea-query#iden
#[derive(Iden)]
enum User {
Table,
Uuid,
Address,
Description,
Email,
}
/*
-- TODO: foreign keys
-- TODO: how should we store addresses?
-- TODO: creation time?
-- TODO: permissions. likely similar to infura
// TODO: creation time?
*/
#[derive(Iden)]
enum SecondaryUser {
Table,
Uuid,
UserId,
Address,
Description,
Email,
Role,
}
// TODO: creation time?
#[derive(Iden)]
enum BlockList {
Table,
Uuid,
Address,
Description,
}
/*
-- TODO: foreign keys
-- TODO: index on api_key
-- TODO: what size for api_key
-- TODO: track active with a timestamp?
-- TODO: creation time?
-- TODO: requests_per_second INT,
-- TODO: requests_per_day INT,
-- TODO: more security features. likely similar to infura
*/
#[derive(Iden)]
enum UserKeys {
Table,
Uuid,
UserUuid,
ApiKey,
Description,
PrivateTxs,
Active,
}