feat: add methods to get current state of repositories
This commit is contained in:
parent
e757e52582
commit
a787a48d41
1 changed files with 51 additions and 21 deletions
72
src/page.rs
72
src/page.rs
|
@ -14,7 +14,9 @@
|
||||||
* You should have received a copy of the GNU Affero General Public License
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
use git2::{build::CheckoutBuilder, BranchType, Direction, ObjectType, Repository};
|
use git2::{
|
||||||
|
build::CheckoutBuilder, Branch, BranchType, Direction, ObjectType, Oid, Remote, Repository,
|
||||||
|
};
|
||||||
#[cfg(not(test))]
|
#[cfg(not(test))]
|
||||||
use log::info;
|
use log::info;
|
||||||
|
|
||||||
|
@ -34,8 +36,12 @@ pub struct Page {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Page {
|
impl Page {
|
||||||
|
pub fn open_repo(&self) -> ServiceResult<Repository> {
|
||||||
|
Ok(Repository::open(&self.path)?)
|
||||||
|
}
|
||||||
|
|
||||||
fn create_repo(&self) -> ServiceResult<Repository> {
|
fn create_repo(&self) -> ServiceResult<Repository> {
|
||||||
let repo = Repository::open(&self.path);
|
let repo = self.open_repo();
|
||||||
|
|
||||||
if let Ok(repo) = repo {
|
if let Ok(repo) = repo {
|
||||||
return Ok(repo);
|
return Ok(repo);
|
||||||
|
@ -50,8 +56,13 @@ impl Page {
|
||||||
Ok(repo)
|
Ok(repo)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn find_branch<'a>(&self, repo: &'a Repository) -> ServiceResult<Branch<'a>> {
|
||||||
|
let branch = repo.find_branch(&self.branch, BranchType::Local)?;
|
||||||
|
Ok(branch)
|
||||||
|
}
|
||||||
|
|
||||||
pub fn deploy_branch(&self, repo: &Repository) -> ServiceResult<()> {
|
pub fn deploy_branch(&self, repo: &Repository) -> ServiceResult<()> {
|
||||||
let branch = repo.find_branch(&format!("origin/{}", &self.branch), BranchType::Remote)?;
|
let branch = self.find_branch(repo)?;
|
||||||
|
|
||||||
let mut checkout_options = CheckoutBuilder::new();
|
let mut checkout_options = CheckoutBuilder::new();
|
||||||
checkout_options.force();
|
checkout_options.force();
|
||||||
|
@ -59,17 +70,23 @@ impl Page {
|
||||||
let tree = branch.get().peel(ObjectType::Tree)?;
|
let tree = branch.get().peel(ObjectType::Tree)?;
|
||||||
|
|
||||||
repo.checkout_tree(&tree, Some(&mut checkout_options))?;
|
repo.checkout_tree(&tree, Some(&mut checkout_options))?;
|
||||||
repo.set_head(branch.get().name().unwrap())?;
|
repo.set_head(&format!("refs/heads/{}", self.branch))?;
|
||||||
info!("Deploying branch {}", self.branch);
|
info!("Deploying branch {}", self.branch);
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn _fetch_upstream(&self, repo: &Repository, branch: &str) -> ServiceResult<()> {
|
fn _fetch_upstream(&self, repo: &Repository, branch: &str) -> ServiceResult<()> {
|
||||||
let mut remote = repo.find_remote("origin").unwrap();
|
let mut remote = Self::get_deploy_remote(repo)?;
|
||||||
remote.connect(Direction::Fetch)?;
|
remote.connect(Direction::Fetch)?;
|
||||||
info!("Updating repository {}", self.repo);
|
info!("Updating repository {}", self.repo);
|
||||||
remote.fetch(&[branch], None, None)?;
|
let remote_branch_name = format!("origin/{branch}");
|
||||||
|
remote.fetch(&[&remote_branch_name], None, None)?;
|
||||||
remote.disconnect()?;
|
remote.disconnect()?;
|
||||||
|
let branch = repo.find_branch(&remote_branch_name, BranchType::Remote)?;
|
||||||
|
let commit = branch.get().peel_to_commit()?;
|
||||||
|
if self.find_branch(repo).is_err() {
|
||||||
|
repo.branch(&self.branch, &commit, true)?;
|
||||||
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -79,23 +96,34 @@ impl Page {
|
||||||
self.deploy_branch(&repo)?;
|
self.deploy_branch(&repo)?;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn get_deploy_branch(&self, repo: &Repository) -> ServiceResult<String> {
|
||||||
|
let branch = self.find_branch(repo)?;
|
||||||
|
if branch.is_head() {
|
||||||
|
Ok(self.branch.clone())
|
||||||
|
} else {
|
||||||
|
Err(ServiceError::BranchNotFound(self.branch.clone()))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_deploy_commit(repo: &Repository) -> ServiceResult<Oid> {
|
||||||
|
let head = repo.head()?;
|
||||||
|
let commit = head.peel_to_commit()?;
|
||||||
|
Ok(commit.id())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_deploy_remote(repo: &Repository) -> ServiceResult<Remote> {
|
||||||
|
Ok(repo.find_remote("origin")?)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use super::*;
|
use super::*;
|
||||||
|
|
||||||
use git2::Branch;
|
|
||||||
use git2::Repository;
|
use git2::Repository;
|
||||||
use mktemp::Temp;
|
use mktemp::Temp;
|
||||||
|
|
||||||
impl Page {
|
|
||||||
fn get_tree<'a>(&self, repo: &'a Repository) -> Branch<'a> {
|
|
||||||
repo.find_branch(&format!("origin/{}", &self.branch), BranchType::Remote)
|
|
||||||
.unwrap()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[actix_rt::test]
|
#[actix_rt::test]
|
||||||
async fn pages_works() {
|
async fn pages_works() {
|
||||||
let tmp_dir = Temp::new_dir().unwrap();
|
let tmp_dir = Temp::new_dir().unwrap();
|
||||||
|
@ -120,14 +148,16 @@ mod tests {
|
||||||
"repository exists yet"
|
"repository exists yet"
|
||||||
);
|
);
|
||||||
|
|
||||||
let gh_pages = page.get_tree(&repo);
|
let gh_pages = page.get_deploy_branch(&repo).unwrap();
|
||||||
assert_eq!(
|
assert_eq!(gh_pages, "gh-pages");
|
||||||
gh_pages.name().unwrap().as_ref().unwrap(),
|
|
||||||
&"origin/gh-pages"
|
|
||||||
);
|
|
||||||
page.branch = "master".to_string();
|
page.branch = "master".to_string();
|
||||||
page.update().unwrap();
|
page.update().unwrap();
|
||||||
let master = page.get_tree(&repo);
|
let master = page.get_deploy_branch(&repo).unwrap();
|
||||||
assert_eq!(master.name().unwrap().as_ref().unwrap(), &"origin/master");
|
assert_eq!(master, "master");
|
||||||
|
|
||||||
|
assert_eq!(
|
||||||
|
Page::get_deploy_remote(&repo).unwrap().url().unwrap(),
|
||||||
|
page.repo
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue