check if the user is in a nextsync repo and fail else
This commit is contained in:
parent
d3592a5209
commit
b74c5c176b
@ -5,7 +5,6 @@ use std::path::{Path, PathBuf};
|
|||||||
use clap::Values;
|
use clap::Values;
|
||||||
use regex::Regex;
|
use regex::Regex;
|
||||||
use crate::utils::api::ApiProps;
|
use crate::utils::api::ApiProps;
|
||||||
use crate::utils::read::read_folder;
|
|
||||||
use crate::global::global::{DIR_PATH, set_dir_path};
|
use crate::global::global::{DIR_PATH, set_dir_path};
|
||||||
use crate::services::api::ApiError;
|
use crate::services::api::ApiError;
|
||||||
use crate::services::req_props::{ReqProps, ObjProps};
|
use crate::services::req_props::{ReqProps, ObjProps};
|
||||||
@ -61,7 +60,7 @@ pub fn clone(remote: Values<'_>) {
|
|||||||
.getlastmodified()
|
.getlastmodified()
|
||||||
.send_req_multiple();
|
.send_req_multiple();
|
||||||
|
|
||||||
let mut objs = match res {
|
let objs = match res {
|
||||||
Ok(o) => o,
|
Ok(o) => o,
|
||||||
Err(ApiError::IncorrectRequest(err)) => {
|
Err(ApiError::IncorrectRequest(err)) => {
|
||||||
eprintln!("fatal: {}", err.status());
|
eprintln!("fatal: {}", err.status());
|
||||||
|
@ -3,13 +3,7 @@ use std::io::{self, Write};
|
|||||||
use crate::utils::{path, read};
|
use crate::utils::{path, read};
|
||||||
|
|
||||||
pub fn set(var: &str, val: &str) -> io::Result<()> {
|
pub fn set(var: &str, val: &str) -> io::Result<()> {
|
||||||
let mut root = match path::nextsync() {
|
let mut root = path::nextsync();
|
||||||
Some(path) => path,
|
|
||||||
None => {
|
|
||||||
eprintln!("fatal: not a nextsync repository (or any of the parent directories): .nextsync");
|
|
||||||
std::process::exit(1);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
root.push("config");
|
root.push("config");
|
||||||
|
|
||||||
// todo check if exist
|
// todo check if exist
|
||||||
@ -28,13 +22,7 @@ pub fn set(var: &str, val: &str) -> io::Result<()> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn get(var: &str) -> Option<String> {
|
pub fn get(var: &str) -> Option<String> {
|
||||||
let mut root = match path::nextsync() {
|
let mut root = path::nextsync();
|
||||||
Some(path) => path,
|
|
||||||
None => {
|
|
||||||
eprintln!("fatal: not a nextsync repository (or any of the parent directories): .nextsync");
|
|
||||||
std::process::exit(1);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
root.push("config");
|
root.push("config");
|
||||||
|
|
||||||
if let Ok(lines) = read::read_lines(root) {
|
if let Ok(lines) = read::read_lines(root) {
|
||||||
|
@ -12,6 +12,7 @@ pub fn init() {
|
|||||||
None => env::current_dir().unwrap(),
|
None => env::current_dir().unwrap(),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// check if dir is empty
|
||||||
if let Ok(entries) = read_folder(path.clone()) {
|
if let Ok(entries) = read_folder(path.clone()) {
|
||||||
if entries.len() != 0 {
|
if entries.len() != 0 {
|
||||||
eprintln!("fatal: destination path '{}' already exists and is not an empty directory.", path.display());
|
eprintln!("fatal: destination path '{}' already exists and is not an empty directory.", path.display());
|
||||||
@ -23,9 +24,7 @@ pub fn init() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let builder = DirBuilder::new();
|
let builder = DirBuilder::new();
|
||||||
// todo check if dir empty
|
|
||||||
|
|
||||||
// .nextsync folder
|
|
||||||
path.push(".nextsync");
|
path.push(".nextsync");
|
||||||
match builder.create(path.clone()) {
|
match builder.create(path.clone()) {
|
||||||
Ok(()) => (),
|
Ok(()) => (),
|
||||||
|
@ -1,12 +1,5 @@
|
|||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
use crate::services::api::ApiError;
|
|
||||||
use crate::services::upload_file::UploadFile;
|
|
||||||
use crate::services::delete_path::DeletePath;
|
|
||||||
use crate::services::req_props::{ReqProps, ObjProps};
|
|
||||||
use crate::store::index;
|
|
||||||
use crate::store::object::blob;
|
|
||||||
use crate::commands::{status, config};
|
use crate::commands::{status, config};
|
||||||
use crate::commands::status::{State, LocalObj};
|
|
||||||
use crate::commands::push::push_factory::{PushFactory, PushState};
|
use crate::commands::push::push_factory::{PushFactory, PushState};
|
||||||
|
|
||||||
pub mod push_factory;
|
pub mod push_factory;
|
||||||
@ -27,7 +20,6 @@ pub fn push() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
let staged_objs = status::get_all_staged();
|
let staged_objs = status::get_all_staged();
|
||||||
// todo sort folder first
|
|
||||||
|
|
||||||
// path that certify that all its children can be push whithout hesistation
|
// path that certify that all its children can be push whithout hesistation
|
||||||
// (e.g if remote dir has no changes since last sync all children
|
// (e.g if remote dir has no changes since last sync all children
|
||||||
|
@ -5,7 +5,7 @@ use crate::services::create_folder::CreateFolder;
|
|||||||
use crate::store::index;
|
use crate::store::index;
|
||||||
use crate::store::object::tree;
|
use crate::store::object::tree;
|
||||||
use crate::commands::status::LocalObj;
|
use crate::commands::status::LocalObj;
|
||||||
use crate::commands::push::push_factory::{PushState, PushChange, PushFactory, PushFlowState};
|
use crate::commands::push::push_factory::{PushState, PushChange, PushFlowState};
|
||||||
|
|
||||||
pub struct NewDir {
|
pub struct NewDir {
|
||||||
pub obj: LocalObj
|
pub obj: LocalObj
|
||||||
|
@ -2,14 +2,7 @@ use std::fs::File;
|
|||||||
use crate::utils;
|
use crate::utils;
|
||||||
|
|
||||||
pub fn reset() {
|
pub fn reset() {
|
||||||
let mut root = match utils::path::nextsync_root() {
|
let mut root = utils::path::nextsync();
|
||||||
Some(path) => path,
|
|
||||||
None => {
|
|
||||||
eprintln!("fatal: not a nextsync repository (or any of the parent directories): .nextsync");
|
|
||||||
std::process::exit(1);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
root.push(".nextsync");
|
|
||||||
root.push("index");
|
root.push("index");
|
||||||
if File::create(root).is_err() {
|
if File::create(root).is_err() {
|
||||||
eprintln!("fatal: failed to reset");
|
eprintln!("fatal: failed to reset");
|
||||||
|
@ -92,16 +92,11 @@ fn get_diff() -> (Vec<LocalObj>, Vec<LocalObj>) {
|
|||||||
let mut hashes = HashMap::new();
|
let mut hashes = HashMap::new();
|
||||||
let mut objs: Vec<String> = vec![];
|
let mut objs: Vec<String> = vec![];
|
||||||
|
|
||||||
let root = match utils::path::nextsync_root() {
|
let root = utils::path::repo_root();
|
||||||
Some(path) => path,
|
|
||||||
None => {
|
|
||||||
eprintln!("fatal: not a nextsync repository (or any of the parent directories): .nextsync");
|
|
||||||
std::process::exit(1);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
dbg!(utils::path::current());
|
dbg!(utils::path::current());
|
||||||
let nextsync_path = utils::path::nextsync().unwrap();
|
let nextsync_path = utils::path::nextsync();
|
||||||
let current_p = utils::path::current().unwrap();
|
let current_p = utils::path::current().unwrap();
|
||||||
let dist_path = current_p.strip_prefix(root.clone()).unwrap().to_path_buf();
|
let dist_path = current_p.strip_prefix(root.clone()).unwrap().to_path_buf();
|
||||||
|
|
||||||
@ -279,7 +274,7 @@ fn remove_duplicate(hashes: &mut HashMap<String, LocalObj>, objects: &mut Vec<St
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn is_nextsync_config(path: PathBuf) -> bool {
|
fn is_nextsync_config(path: PathBuf) -> bool {
|
||||||
path.ends_with(".nextsync") || path.ends_with(".nextsyncignore")
|
path.ends_with(".nextsync")
|
||||||
}
|
}
|
||||||
|
|
||||||
fn read_head(mut path: PathBuf) -> io::Result<io::Lines<io::BufReader<File>>> {
|
fn read_head(mut path: PathBuf) -> io::Result<io::Lines<io::BufReader<File>>> {
|
||||||
|
@ -2,7 +2,7 @@ use std::env;
|
|||||||
use dotenv::dotenv;
|
use dotenv::dotenv;
|
||||||
use reqwest::Client;
|
use reqwest::Client;
|
||||||
use reqwest::RequestBuilder;
|
use reqwest::RequestBuilder;
|
||||||
use reqwest::{Response, Error, IntoUrl, Method};
|
use reqwest::{Response, Error, Method};
|
||||||
use crate::utils::api::ApiProps;
|
use crate::utils::api::ApiProps;
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
@ -26,11 +26,6 @@ impl ApiBuilder {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn set_request<U: IntoUrl>(&mut self, method: Method, url: U) -> &mut ApiBuilder {
|
|
||||||
self.request = Some(self.client.request(method, url));
|
|
||||||
self
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn build_request(&mut self, method: Method, path: &str) -> &mut ApiBuilder {
|
pub fn build_request(&mut self, method: Method, path: &str) -> &mut ApiBuilder {
|
||||||
dotenv().ok();
|
dotenv().ok();
|
||||||
// todo remove env
|
// todo remove env
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
use reqwest::{Method, IntoUrl, Response, Error};
|
use reqwest::{Method, Response, Error};
|
||||||
use crate::services::api::{ApiBuilder, ApiError};
|
use crate::services::api::{ApiBuilder, ApiError};
|
||||||
|
|
||||||
pub struct CreateFolder {
|
pub struct CreateFolder {
|
||||||
|
@ -3,35 +3,8 @@ use std::fs::{File, OpenOptions};
|
|||||||
use std::io::{self, Write};
|
use std::io::{self, Write};
|
||||||
use crate::utils::{read, path};
|
use crate::utils::{read, path};
|
||||||
|
|
||||||
pub fn _read_only(mut path: PathBuf) -> File {
|
|
||||||
path.push("HEAD");
|
|
||||||
OpenOptions::new()
|
|
||||||
.read(true)
|
|
||||||
.open(path).expect("Cannot open HEAD file")
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn _open(mut path: PathBuf) -> File {
|
|
||||||
path.push("HEAD");
|
|
||||||
OpenOptions::new()
|
|
||||||
.read(true)
|
|
||||||
.write(true)
|
|
||||||
.append(true)
|
|
||||||
.create(true)
|
|
||||||
.open(path).expect("Cannot open HEAD file")
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn _read_line(mut path: PathBuf) -> io::Result<io::Lines<io::BufReader<File>>> {
|
|
||||||
path.push("HEAD");
|
|
||||||
read::read_lines(path)
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn add_line(line: String) -> io::Result<()> {
|
pub fn add_line(line: String) -> io::Result<()> {
|
||||||
let mut root = match path::nextsync_root() {
|
let mut root = path::nextsync();
|
||||||
Some(path) => path,
|
|
||||||
None => todo!(),
|
|
||||||
};
|
|
||||||
|
|
||||||
root.push(".nextsync");
|
|
||||||
root.push("HEAD");
|
root.push("HEAD");
|
||||||
|
|
||||||
let mut file = OpenOptions::new()
|
let mut file = OpenOptions::new()
|
||||||
@ -45,12 +18,7 @@ pub fn add_line(line: String) -> io::Result<()> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn rm_line(line: &str) -> io::Result<()> {
|
pub fn rm_line(line: &str) -> io::Result<()> {
|
||||||
let mut root = match path::nextsync_root() {
|
let mut root = path::nextsync();
|
||||||
Some(path) => path,
|
|
||||||
None => todo!(),
|
|
||||||
};
|
|
||||||
|
|
||||||
root.push(".nextsync");
|
|
||||||
root.push("HEAD");
|
root.push("HEAD");
|
||||||
read::rm_line(root, line)?;
|
read::rm_line(root, line)?;
|
||||||
Ok(())
|
Ok(())
|
||||||
|
@ -4,18 +4,8 @@ use std::fs::OpenOptions;
|
|||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
use crate::utils::{read, path};
|
use crate::utils::{read, path};
|
||||||
|
|
||||||
pub fn _read_only(mut path: PathBuf) -> File {
|
|
||||||
path.push("index");
|
|
||||||
OpenOptions::new()
|
|
||||||
.read(true)
|
|
||||||
.open(path).expect("Cannot open index file")
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn open() -> File {
|
pub fn open() -> File {
|
||||||
let mut path = match path::nextsync() {
|
let mut path = path::nextsync();
|
||||||
Some(p) => p,
|
|
||||||
None => todo!(),
|
|
||||||
};
|
|
||||||
|
|
||||||
path.push("index");
|
path.push("index");
|
||||||
OpenOptions::new()
|
OpenOptions::new()
|
||||||
@ -27,20 +17,13 @@ pub fn open() -> File {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn read_line() -> io::Result<io::Lines<io::BufReader<File>>> {
|
pub fn read_line() -> io::Result<io::Lines<io::BufReader<File>>> {
|
||||||
let mut path = match path::nextsync() {
|
let mut path = path::nextsync();
|
||||||
Some(p) => p,
|
|
||||||
None => todo!(),
|
|
||||||
};
|
|
||||||
path.push("index");
|
path.push("index");
|
||||||
read::read_lines(path)
|
read::read_lines(path)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn rm_line(line: &str) -> io::Result<()> {
|
pub fn rm_line(line: &str) -> io::Result<()> {
|
||||||
let mut root = match path::nextsync() {
|
let mut root = path::nextsync();
|
||||||
Some(path) => path,
|
|
||||||
None => todo!(),
|
|
||||||
};
|
|
||||||
|
|
||||||
root.push("index");
|
root.push("index");
|
||||||
read::rm_line(root, line)?;
|
read::rm_line(root, line)?;
|
||||||
Ok(())
|
Ok(())
|
||||||
|
@ -37,23 +37,16 @@ fn hash_obj(obj: &str) -> (String, String) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn _object_path(obj: &str) -> PathBuf {
|
fn _object_path(obj: &str) -> PathBuf {
|
||||||
let mut root = match path::objects() {
|
let mut root = path::objects();
|
||||||
Some(path) => path,
|
|
||||||
None => todo!(),
|
|
||||||
};
|
|
||||||
|
|
||||||
let (dir, res) = hash_obj(&obj);
|
let (dir, res) = hash_obj(&obj);
|
||||||
|
|
||||||
root.push(dir);
|
root.push(dir);
|
||||||
root.push(res);
|
root.push(res);
|
||||||
root
|
root
|
||||||
}
|
}
|
||||||
|
|
||||||
fn rm_node(path: &Path, node: &str) -> io::Result<()> {
|
fn rm_node(path: &Path, node: &str) -> io::Result<()> {
|
||||||
let mut root = match path::objects() {
|
let mut root = path::objects();
|
||||||
Some(path) => path,
|
|
||||||
None => todo!(),
|
|
||||||
};
|
|
||||||
|
|
||||||
let (dir, rest) = hash_obj(path.clone().to_str().unwrap());
|
let (dir, rest) = hash_obj(path.clone().to_str().unwrap());
|
||||||
|
|
||||||
root.push(dir);
|
root.push(dir);
|
||||||
@ -64,10 +57,7 @@ fn rm_node(path: &Path, node: &str) -> io::Result<()> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn add_node(path: &Path, node: &str) -> io::Result<()> {
|
fn add_node(path: &Path, node: &str) -> io::Result<()> {
|
||||||
let mut root = match path::objects() {
|
let mut root = path::objects();
|
||||||
Some(path) => path,
|
|
||||||
None => todo!(),
|
|
||||||
};
|
|
||||||
|
|
||||||
let (dir, rest) = hash_obj(path.clone().to_str().unwrap());
|
let (dir, rest) = hash_obj(path.clone().to_str().unwrap());
|
||||||
|
|
||||||
@ -88,10 +78,7 @@ fn add_node(path: &Path, node: &str) -> io::Result<()> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn create_obj(name: String, content: &str) -> io::Result<()> {
|
fn create_obj(name: String, content: &str) -> io::Result<()> {
|
||||||
let mut root = match path::objects() {
|
let mut root = path::objects();
|
||||||
Some(path) => path,
|
|
||||||
None => todo!(),
|
|
||||||
};
|
|
||||||
|
|
||||||
let c = name.clone();
|
let c = name.clone();
|
||||||
let (dir, rest) = c.split_at(2);
|
let (dir, rest) = c.split_at(2);
|
||||||
@ -111,10 +98,7 @@ fn create_obj(name: String, content: &str) -> io::Result<()> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_timestamp(path_s: String) -> Option<i64> {
|
pub fn get_timestamp(path_s: String) -> Option<i64> {
|
||||||
let mut obj_p = match path::objects() {
|
let mut obj_p = path::objects();
|
||||||
Some(path) => path,
|
|
||||||
None => todo!(),
|
|
||||||
};
|
|
||||||
|
|
||||||
let (dir, res) = hash_obj(&path_s);
|
let (dir, res) = hash_obj(&path_s);
|
||||||
obj_p.push(dir);
|
obj_p.push(dir);
|
||||||
|
@ -35,10 +35,7 @@ pub fn rm(path: &Path) -> io::Result<()> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// remove blob object
|
// remove blob object
|
||||||
let mut root = match path::objects() {
|
let mut root = path::objects();
|
||||||
Some(path) => path,
|
|
||||||
None => todo!(),
|
|
||||||
};
|
|
||||||
|
|
||||||
let c = hash.clone();
|
let c = hash.clone();
|
||||||
let (dir, rest) = c.split_at(2);
|
let (dir, rest) = c.split_at(2);
|
||||||
|
@ -25,10 +25,7 @@ pub fn add(path: &Path, date: &str) -> io::Result<()> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn read(tree: String) -> Option<(String, io::Lines<io::BufReader<File>>)> {
|
pub fn read(tree: String) -> Option<(String, io::Lines<io::BufReader<File>>)> {
|
||||||
let mut obj_p = match path::objects() {
|
let mut obj_p = path::objects();
|
||||||
Some(path) => path,
|
|
||||||
None => todo!(),
|
|
||||||
};
|
|
||||||
|
|
||||||
let (dir, res) = hash_obj(&tree);
|
let (dir, res) = hash_obj(&tree);
|
||||||
obj_p.push(dir);
|
obj_p.push(dir);
|
||||||
|
@ -23,7 +23,7 @@ pub fn current() -> Option<PathBuf> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn nextsync_root() -> Option<PathBuf> {
|
pub fn repo_root_without_err() -> Option<PathBuf> {
|
||||||
let mut path = current()?;
|
let mut path = current()?;
|
||||||
|
|
||||||
let root = loop {
|
let root = loop {
|
||||||
@ -41,32 +41,36 @@ pub fn nextsync_root() -> Option<PathBuf> {
|
|||||||
root
|
root
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn repo_root() -> PathBuf {
|
||||||
|
match repo_root_without_err() {
|
||||||
|
Some(p) => p,
|
||||||
|
None => {
|
||||||
|
eprintln!("fatal: not a nextsync repository (or any of the parent directories): .nextsync");
|
||||||
|
std::process::exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub fn nextsync() -> Option<PathBuf> {
|
pub fn nextsync() -> PathBuf {
|
||||||
if let Some(mut path) = nextsync_root() {
|
let mut path = repo_root();
|
||||||
path.push(".nextsync");
|
path.push(".nextsync");
|
||||||
return Some(path);
|
path
|
||||||
}
|
|
||||||
None
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn objects() -> Option<PathBuf> {
|
pub fn objects() -> PathBuf {
|
||||||
if let Some(mut path) = nextsync_root() {
|
let mut path = repo_root();
|
||||||
path.push(".nextsync");
|
path.push(".nextsync");
|
||||||
path.push("objects");
|
path.push("objects");
|
||||||
return Some(path);
|
path
|
||||||
}
|
|
||||||
None
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn nextsyncignore() -> Option<PathBuf> {
|
pub fn nextsyncignore() -> Option<PathBuf> {
|
||||||
if let Some(mut path) = nextsync_root() {
|
let mut path = repo_root();
|
||||||
path.push(".nextsyncignore");
|
path.push(".nextsyncignore");
|
||||||
if path.exists() {
|
if path.exists() {
|
||||||
return Some(path);
|
return Some(path);
|
||||||
} else {
|
} else {
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user