diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-06-06 22:40:30 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-06-06 22:54:44 +0900 |
| commit | c028a9d5c737de5d2b259638a0a76b999364a262 (patch) | |
| tree | 36c7678a335d284e6d2139346660c77f1e124ddc /crates/shirabe/src/repository/vcs/gitlab_driver.rs | |
| parent | 33550b03c1724fbc8c1c8630c3b03fca1f0c0dc7 (diff) | |
| download | php-shirabe-c028a9d5c737de5d2b259638a0a76b999364a262.tar.gz php-shirabe-c028a9d5c737de5d2b259638a0a76b999364a262.tar.zst php-shirabe-c028a9d5c737de5d2b259638a0a76b999364a262.zip | |
feat(vcs): implement VcsDriverInterface for all VCS drivers
Reconcile the VcsDriverInterface trait with the concrete drivers so every
driver implements it as in PHP, where each driver extends VcsDriver.
- Make cache-mutating getters take &mut self in the trait, matching the
inherent methods' lazy-cache semantics; update vcs_repository consumers.
- Change supports() to take Rc<RefCell<Config>> and return Result<bool>,
completing GitDriver::supports deep ls-remote and its config wiring.
- Add base get_composer_information to Git/Hg/Fossil/Perforce and an
impl VcsDriverInterface block to every driver, delegating to inherent
methods and absorbing type differences in the impl.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/src/repository/vcs/gitlab_driver.rs')
| -rw-r--r-- | crates/shirabe/src/repository/vcs/gitlab_driver.rs | 92 |
1 files changed, 85 insertions, 7 deletions
diff --git a/crates/shirabe/src/repository/vcs/gitlab_driver.rs b/crates/shirabe/src/repository/vcs/gitlab_driver.rs index 3e2cd38..84a569f 100644 --- a/crates/shirabe/src/repository/vcs/gitlab_driver.rs +++ b/crates/shirabe/src/repository/vcs/gitlab_driver.rs @@ -972,14 +972,14 @@ impl GitLabDriver { /// repository given. pub fn supports( io: std::rc::Rc<std::cell::RefCell<dyn IOInterface>>, - config: &Config, + config: std::rc::Rc<std::cell::RefCell<Config>>, url: &str, _deep: bool, - ) -> bool { + ) -> anyhow::Result<bool> { let mut match_: IndexMap<CaptureKey, String> = IndexMap::new(); if !Preg::is_match_strict_groups3(Self::URL_REGEX, url, Some(&mut match_)).unwrap_or(false) { - return false; + return Ok(false); } let scheme = match_ @@ -1005,14 +1005,14 @@ impl GitLabDriver { ); if Self::determine_origin( - &config.get("gitlab-domains"), + &config.borrow().get("gitlab-domains"), guessed_domain, &mut url_parts, match_.get(&CaptureKey::ByName("port".to_string())).cloned(), ) .is_none() { - return false; + return Ok(false); } if scheme == "https" && !extension_loaded("openssl") { @@ -1025,10 +1025,10 @@ impl GitLabDriver { io_interface::VERBOSE, ); - return false; + return Ok(false); } - true + Ok(true) } /// Gives back the loaded <gitlab-api>/projects/<owner>/<repo> result @@ -1122,3 +1122,81 @@ impl GitLabDriver { None } } + +impl crate::repository::vcs::VcsDriverInterface for GitLabDriver { + fn initialize(&mut self) -> anyhow::Result<()> { + GitLabDriver::initialize(self) + } + + fn get_composer_information( + &mut self, + identifier: &str, + ) -> anyhow::Result<Option<IndexMap<String, PhpMixed>>> { + GitLabDriver::get_composer_information(self, identifier) + } + + fn get_file_content(&mut self, file: &str, identifier: &str) -> anyhow::Result<Option<String>> { + GitLabDriver::get_file_content(self, file, identifier) + } + + fn get_change_date(&mut self, identifier: &str) -> anyhow::Result<Option<DateTime<Utc>>> { + GitLabDriver::get_change_date(self, identifier) + } + + fn get_root_identifier(&mut self) -> anyhow::Result<String> { + GitLabDriver::get_root_identifier(self) + } + + fn get_branches(&mut self) -> anyhow::Result<IndexMap<String, String>> { + GitLabDriver::get_branches(self) + } + + fn get_tags(&mut self) -> anyhow::Result<IndexMap<String, String>> { + GitLabDriver::get_tags(self) + } + + fn get_dist(&self, identifier: &str) -> anyhow::Result<Option<IndexMap<String, String>>> { + Ok(GitLabDriver::get_dist(self, identifier).map(|m| { + m.into_iter() + .map(|(k, v)| (k, v.as_string().unwrap_or("").to_string())) + .collect() + })) + } + + fn get_source(&self, identifier: &str) -> anyhow::Result<IndexMap<String, String>> { + Ok(GitLabDriver::get_source(self, identifier) + .into_iter() + .map(|(k, v)| (k, v.as_string().unwrap_or("").to_string())) + .collect()) + } + + fn get_url(&self) -> String { + GitLabDriver::get_url(self) + } + + fn has_composer_file(&mut self, identifier: &str) -> anyhow::Result<bool> { + match self.get_composer_information(identifier) { + Ok(info) => Ok(info.is_some()), + Err(e) => { + if e.downcast_ref::<TransportException>().is_some() { + Ok(false) + } else { + Err(e) + } + } + } + } + + fn cleanup(&mut self) -> anyhow::Result<()> { + Ok(()) + } + + fn supports( + io: std::rc::Rc<std::cell::RefCell<dyn IOInterface>>, + config: std::rc::Rc<std::cell::RefCell<Config>>, + url: &str, + deep: bool, + ) -> anyhow::Result<bool> { + GitLabDriver::supports(io, config, url, deep) + } +} |
