|
|
@ -5,7 +5,6 @@ |
|
|
|
use std::path::PathBuf;
|
|
|
|
|
|
|
|
// 3rd-party crate imports
|
|
|
|
use directories::ProjectDirs;
|
|
|
|
use structopt::StructOpt;
|
|
|
|
|
|
|
|
use log::{debug, info, trace};
|
|
|
@ -14,6 +13,7 @@ use log::{debug, info, trace}; |
|
|
|
use crate::cache::File as FileCache;
|
|
|
|
use crate::errors::*;
|
|
|
|
use crate::gitignore::Gitignore;
|
|
|
|
use crate::helpers;
|
|
|
|
use crate::helpers::{git_dir, BoilerplateOpts, HELP_TEMPLATE};
|
|
|
|
use crate::template::*;
|
|
|
|
|
|
|
@ -96,29 +96,32 @@ fn run_add(glob: &str) -> Result<()> { |
|
|
|
/// Runs the command `get`
|
|
|
|
fn run_get(lang: &str) -> Result<()> {
|
|
|
|
trace!("Run command `get` with lang {}", &lang);
|
|
|
|
unimplemented!();
|
|
|
|
let root = match git_dir()? {
|
|
|
|
Some(r) => r,
|
|
|
|
None => return Err(ErrorKind::NoGitRootFound.into()),
|
|
|
|
};
|
|
|
|
info!("Working with git root in {:?}", root);
|
|
|
|
|
|
|
|
let tmpls = helpers::get_templates()?;
|
|
|
|
let tmpl: &Template =
|
|
|
|
tmpls.get(lang).ok_or_else(|| ErrorKind::TemplateNotFound(lang.to_string()))?;
|
|
|
|
debug!("Found a template for {}", lang);
|
|
|
|
|
|
|
|
let url = tmpl
|
|
|
|
.download_url
|
|
|
|
.as_ref()
|
|
|
|
.ok_or_else(|| ErrorKind::TemplateNoDownloadUrl(lang.to_string()))?;
|
|
|
|
trace!("Getting template for {} from {}", tmpl.pretty_name(), url);
|
|
|
|
|
|
|
|
todo!();
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Runs the command `list-templates`
|
|
|
|
#[allow(clippy::print_stdout)]
|
|
|
|
fn run_list_templates() -> Result<()> {
|
|
|
|
let cache_root: PathBuf = match ProjectDirs::from("org", "webschneider", env!("CARGO_PKG_NAME"))
|
|
|
|
{
|
|
|
|
Some(dirs) => PathBuf::from(dirs.cache_dir()),
|
|
|
|
None => "/tmp".into(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let cache: FileCache = FileCache::new(&cache_root, std::time::Duration::from_secs(60 * 24 * 2))
|
|
|
|
.chain_err(|| "Error while creating FileCache")?;
|
|
|
|
let tmpl = if cache.exists("templates.json") {
|
|
|
|
cache.get("templates.json")?
|
|
|
|
} else {
|
|
|
|
let tmpls = GithubTemplates::new().chain_err(|| "Error while getting Templates")?;
|
|
|
|
cache
|
|
|
|
.set("templates.json", &tmpls)
|
|
|
|
.chain_err(|| "Error while writing templates to cache")?;
|
|
|
|
tmpls
|
|
|
|
};
|
|
|
|
let tmpl = helpers::get_templates()?;
|
|
|
|
let names = tmpl.list_names();
|
|
|
|
println!("{}", names.join("\n"));
|
|
|
|
Ok(())
|
|
|
|