2024-07-25 09:02:43 +01:00
|
|
|
//
|
2024-08-03 12:53:59 +01:00
|
|
|
mod alerts;
|
2024-07-27 18:51:05 +01:00
|
|
|
mod file_watcher;
|
2024-07-28 13:35:26 +01:00
|
|
|
mod forge;
|
2024-04-06 18:39:20 +01:00
|
|
|
mod init;
|
2024-07-28 08:58:32 +01:00
|
|
|
mod repo;
|
2024-07-27 08:11:52 +01:00
|
|
|
mod server;
|
2024-07-27 19:05:18 +01:00
|
|
|
mod webhook;
|
2024-04-06 18:39:20 +01:00
|
|
|
|
2024-05-14 07:58:28 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|
|
|
|
|
2024-07-26 06:49:09 +01:00
|
|
|
use git_next_core::git;
|
|
|
|
|
2024-04-28 08:05:09 +01:00
|
|
|
use std::path::PathBuf;
|
|
|
|
|
2024-07-30 10:52:05 +01:00
|
|
|
use anyhow::Result;
|
2024-04-06 18:26:08 +01:00
|
|
|
use clap::Parser;
|
2024-04-28 08:05:09 +01:00
|
|
|
use kxio::{fs, network::Network};
|
2024-04-06 18:26:08 +01:00
|
|
|
|
|
|
|
#[derive(Parser, Debug)]
|
|
|
|
#[clap(version = clap::crate_version!(), author = clap::crate_authors!(), about = clap::crate_description!())]
|
|
|
|
struct Commands {
|
|
|
|
#[clap(subcommand)]
|
|
|
|
command: Command,
|
|
|
|
}
|
|
|
|
#[derive(Parser, Debug)]
|
|
|
|
enum Command {
|
|
|
|
Init,
|
|
|
|
#[clap(subcommand)]
|
|
|
|
Server(Server),
|
|
|
|
}
|
|
|
|
#[derive(Parser, Debug)]
|
|
|
|
enum Server {
|
|
|
|
Init,
|
|
|
|
Start,
|
|
|
|
}
|
2024-04-12 12:58:07 +01:00
|
|
|
|
2024-07-30 10:52:05 +01:00
|
|
|
fn main() -> Result<()> {
|
2024-04-28 08:05:09 +01:00
|
|
|
let fs = fs::new(PathBuf::default());
|
2024-04-09 10:44:01 +01:00
|
|
|
let net = Network::new_real();
|
2024-07-26 06:49:09 +01:00
|
|
|
let repository_factory = git::repository::factory::real();
|
2024-04-06 18:26:08 +01:00
|
|
|
let commands = Commands::parse();
|
|
|
|
|
|
|
|
match commands.command {
|
|
|
|
Command::Init => {
|
2024-08-05 07:39:38 +01:00
|
|
|
init::run(&fs)?;
|
2024-04-06 18:26:08 +01:00
|
|
|
}
|
|
|
|
Command::Server(server) => match server {
|
|
|
|
Server::Init => {
|
2024-08-05 07:39:38 +01:00
|
|
|
server::init(&fs)?;
|
2024-04-06 18:26:08 +01:00
|
|
|
}
|
|
|
|
Server::Start => {
|
2024-06-19 07:03:08 +01:00
|
|
|
let sleep_duration = std::time::Duration::from_secs(10);
|
2024-07-30 10:55:35 +01:00
|
|
|
server::start(fs, net, repository_factory, sleep_duration)?;
|
2024-04-06 18:26:08 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
2024-07-30 10:52:05 +01:00
|
|
|
Ok(())
|
2024-04-06 17:39:56 +01:00
|
|
|
}
|