web3-proxy/migration/src/m20220101_000001_create_table.rs

215 lines
6.4 KiB
Rust
Raw Normal View History

2022-07-26 07:53:38 +03:00
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> {
2022-08-03 03:27:26 +03:00
manager
.create_table(
Table::create()
.table(User::Table)
.if_not_exists()
.col(
ColumnDef::new(User::Id)
.big_integer()
.not_null()
.auto_increment()
.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().not_null())
.to_owned(),
)
.await?;
2022-07-26 07:53:38 +03:00
manager
.create_table(
Table::create()
2022-08-03 03:27:26 +03:00
.table(SecondaryUser::Table)
2022-07-26 07:53:38 +03:00
.if_not_exists()
.col(
2022-08-03 03:27:26 +03:00
ColumnDef::new(SecondaryUser::Id)
.big_integer()
2022-07-26 07:53:38 +03:00
.not_null()
.auto_increment()
.primary_key(),
)
2022-08-03 03:27:26 +03:00
.col(
ColumnDef::new(SecondaryUser::UserId)
.big_integer()
.not_null(),
)
.col(ColumnDef::new(SecondaryUser::Address).string().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(),
)
2022-07-26 07:53:38 +03:00
.to_owned(),
)
2022-08-03 03:27:26 +03:00
.await?;
// TODO: make sure from and to aren't backwards
manager
.create_foreign_key(
sea_query::ForeignKey::create()
.from(SecondaryUser::Table, SecondaryUser::UserId)
.to(User::Table, User::Id)
.to_owned(),
)
.await?;
manager
.create_table(
Table::create()
.table(BlockList::Table)
.if_not_exists()
.col(
ColumnDef::new(BlockList::Id)
.big_integer()
.not_null()
.auto_increment()
.primary_key(),
)
.col(ColumnDef::new(BlockList::Address).string().not_null())
.col(ColumnDef::new(BlockList::Chain).integer().not_null())
.col(ColumnDef::new(BlockList::Description).string().not_null())
.to_owned(),
)
.await?;
manager
.create_table(
Table::create()
.table(UserKeys::Table)
.if_not_exists()
.col(
ColumnDef::new(UserKeys::Id)
.big_integer()
.not_null()
.auto_increment()
.primary_key(),
)
.col(ColumnDef::new(UserKeys::UserId).big_integer().not_null())
.col(ColumnDef::new(UserKeys::ApiKey).string_len(32).not_null())
.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(),
)
.to_owned(),
)
.await?;
// TODO: make sure from and to aren't backwards
manager
.create_foreign_key(
sea_query::ForeignKey::create()
.from(UserKeys::Table, UserKeys::UserId)
.to(User::Table, User::Id)
.to_owned(),
)
.await?;
Ok(())
2022-07-26 07:53:38 +03:00
}
async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> {
manager
2022-08-03 03:27:26 +03:00
.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(())
2022-07-26 07:53:38 +03:00
}
}
/// Learn more at https://docs.rs/sea-query#iden
#[derive(Iden)]
2022-08-03 03:27:26 +03:00
enum User {
Table,
Id,
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,
Id,
UserId,
Address,
Description,
Email,
Role,
}
// TODO: creation time?
#[derive(Iden)]
enum BlockList {
Table,
Id,
Address,
Chain,
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 {
2022-07-26 07:53:38 +03:00
Table,
Id,
2022-08-03 03:27:26 +03:00
UserId,
ApiKey,
Description,
PrivateTxs,
Active,
2022-07-26 07:53:38 +03:00
}