forked from github-starred/komodo
* consolidate deserializers * key value list doc * use string list deserializers for all entity Vec<String> * add additional env files support * plumbing for Action resource * js client readme indentation * regen lock * add action UI * action backend * start on action frontend * update lock * get up to speed * get action started * clean up default action file * seems to work * toml export include action * action works * action works part 2 * bump rust version to 1.82.0 * copy deno bin from bin image * action use local dir * update not having changes doesn't return error * format with prettier * support yaml formatting with prettier * variable no change is Ok
145 lines
4.3 KiB
Rust
145 lines
4.3 KiB
Rust
use komodo_client::entities::{
|
|
action::Action,
|
|
alert::Alert,
|
|
alerter::Alerter,
|
|
api_key::ApiKey,
|
|
build::Build,
|
|
builder::Builder,
|
|
config::core::DatabaseConfig,
|
|
deployment::Deployment,
|
|
permission::Permission,
|
|
procedure::Procedure,
|
|
provider::{DockerRegistryAccount, GitProviderAccount},
|
|
repo::Repo,
|
|
server::Server,
|
|
server_template::ServerTemplate,
|
|
stack::Stack,
|
|
stats::SystemStatsRecord,
|
|
sync::ResourceSync,
|
|
tag::Tag,
|
|
update::Update,
|
|
user::User,
|
|
user_group::UserGroup,
|
|
variable::Variable,
|
|
};
|
|
use mongo_indexed::{create_index, create_unique_index};
|
|
use mungos::{
|
|
init::MongoBuilder,
|
|
mongodb::{Collection, Database},
|
|
};
|
|
|
|
#[derive(Debug)]
|
|
pub struct DbClient {
|
|
pub users: Collection<User>,
|
|
pub user_groups: Collection<UserGroup>,
|
|
pub permissions: Collection<Permission>,
|
|
pub api_keys: Collection<ApiKey>,
|
|
pub tags: Collection<Tag>,
|
|
pub variables: Collection<Variable>,
|
|
pub git_accounts: Collection<GitProviderAccount>,
|
|
pub registry_accounts: Collection<DockerRegistryAccount>,
|
|
pub updates: Collection<Update>,
|
|
pub alerts: Collection<Alert>,
|
|
pub stats: Collection<SystemStatsRecord>,
|
|
// RESOURCES
|
|
pub servers: Collection<Server>,
|
|
pub deployments: Collection<Deployment>,
|
|
pub builds: Collection<Build>,
|
|
pub builders: Collection<Builder>,
|
|
pub repos: Collection<Repo>,
|
|
pub procedures: Collection<Procedure>,
|
|
pub actions: Collection<Action>,
|
|
pub alerters: Collection<Alerter>,
|
|
pub server_templates: Collection<ServerTemplate>,
|
|
pub resource_syncs: Collection<ResourceSync>,
|
|
pub stacks: Collection<Stack>,
|
|
//
|
|
pub db: Database,
|
|
}
|
|
|
|
impl DbClient {
|
|
pub async fn new(
|
|
DatabaseConfig {
|
|
uri,
|
|
address,
|
|
username,
|
|
password,
|
|
app_name,
|
|
db_name,
|
|
}: &DatabaseConfig,
|
|
) -> anyhow::Result<DbClient> {
|
|
let mut client = MongoBuilder::default().app_name(app_name);
|
|
|
|
match (
|
|
!uri.is_empty(),
|
|
!address.is_empty(),
|
|
!username.is_empty(),
|
|
!password.is_empty(),
|
|
) {
|
|
(true, _, _, _) => {
|
|
client = client.uri(uri);
|
|
}
|
|
(_, true, true, true) => {
|
|
client = client
|
|
.address(address)
|
|
.username(username)
|
|
.password(password);
|
|
}
|
|
(_, true, _, _) => {
|
|
client = client.address(address);
|
|
}
|
|
_ => {
|
|
error!("config.mongo not configured correctly. must pass either config.mongo.uri, or config.mongo.address + config.mongo.username? + config.mongo.password?");
|
|
std::process::exit(1)
|
|
}
|
|
}
|
|
|
|
let client = client.build().await?;
|
|
let db = client.database(db_name);
|
|
|
|
let client = DbClient {
|
|
users: mongo_indexed::collection(&db, true).await?,
|
|
user_groups: mongo_indexed::collection(&db, true).await?,
|
|
permissions: mongo_indexed::collection(&db, true).await?,
|
|
api_keys: mongo_indexed::collection(&db, true).await?,
|
|
tags: mongo_indexed::collection(&db, true).await?,
|
|
variables: mongo_indexed::collection(&db, true).await?,
|
|
git_accounts: mongo_indexed::collection(&db, true).await?,
|
|
registry_accounts: mongo_indexed::collection(&db, true).await?,
|
|
updates: mongo_indexed::collection(&db, true).await?,
|
|
alerts: mongo_indexed::collection(&db, true).await?,
|
|
stats: mongo_indexed::collection(&db, true).await?,
|
|
// RESOURCES
|
|
servers: resource_collection(&db, "Server").await?,
|
|
deployments: resource_collection(&db, "Deployment").await?,
|
|
builds: resource_collection(&db, "Build").await?,
|
|
builders: resource_collection(&db, "Builder").await?,
|
|
repos: resource_collection(&db, "Repo").await?,
|
|
alerters: resource_collection(&db, "Alerter").await?,
|
|
procedures: resource_collection(&db, "Procedure").await?,
|
|
actions: resource_collection(&db, "Action").await?,
|
|
server_templates: resource_collection(&db, "ServerTemplate")
|
|
.await?,
|
|
resource_syncs: resource_collection(&db, "ResourceSync")
|
|
.await?,
|
|
stacks: resource_collection(&db, "Stack").await?,
|
|
//
|
|
db,
|
|
};
|
|
Ok(client)
|
|
}
|
|
}
|
|
|
|
async fn resource_collection<T: Send + Sync>(
|
|
db: &Database,
|
|
collection_name: &str,
|
|
) -> anyhow::Result<Collection<T>> {
|
|
let coll = db.collection::<T>(collection_name);
|
|
|
|
create_unique_index(&coll, "name").await?;
|
|
|
|
create_index(&coll, "tags").await?;
|
|
|
|
Ok(coll)
|
|
}
|