2018-01-26 12:15:53 +00:00
|
|
|
use std::str::FromStr;
|
|
|
|
|
2018-01-27 09:47:12 +00:00
|
|
|
#[derive(Clone)]
|
2018-01-26 12:15:53 +00:00
|
|
|
pub struct RepoPath {
|
|
|
|
pub site: RepoSite,
|
|
|
|
pub qual: RepoQualifier,
|
|
|
|
pub name: RepoName
|
|
|
|
}
|
|
|
|
|
|
|
|
impl RepoPath {
|
|
|
|
pub fn from_parts(site: &str, qual: &str, name: &str) -> Result<RepoPath, RepoValidationError> {
|
|
|
|
Ok(RepoPath {
|
|
|
|
site: site.parse()?,
|
|
|
|
qual: qual.parse()?,
|
|
|
|
name: name.parse()?
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct RepoValidationError;
|
|
|
|
|
2018-01-27 11:49:43 +00:00
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
pub enum RepoSite {
|
|
|
|
Github
|
|
|
|
}
|
|
|
|
|
|
|
|
impl RepoSite {
|
|
|
|
pub fn to_base_uri(&self) -> &'static str {
|
|
|
|
match self {
|
|
|
|
&RepoSite::Github => "https://github.com"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-26 12:15:53 +00:00
|
|
|
|
|
|
|
impl FromStr for RepoSite {
|
|
|
|
type Err = RepoValidationError;
|
|
|
|
|
|
|
|
fn from_str(input: &str) -> Result<RepoSite, RepoValidationError> {
|
2018-01-27 11:49:43 +00:00
|
|
|
match input {
|
|
|
|
"github" => Ok(RepoSite::Github),
|
|
|
|
_ => Err(RepoValidationError)
|
2018-01-26 12:15:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsRef<str> for RepoSite {
|
|
|
|
fn as_ref(&self) -> &str {
|
2018-01-27 11:49:43 +00:00
|
|
|
match self {
|
|
|
|
&RepoSite::Github => "github"
|
|
|
|
}
|
2018-01-26 12:15:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-27 09:47:12 +00:00
|
|
|
#[derive(Clone)]
|
2018-01-26 12:15:53 +00:00
|
|
|
pub struct RepoQualifier(String);
|
|
|
|
|
|
|
|
impl FromStr for RepoQualifier {
|
|
|
|
type Err = RepoValidationError;
|
|
|
|
|
|
|
|
fn from_str(input: &str) -> Result<RepoQualifier, RepoValidationError> {
|
|
|
|
let is_valid = input.chars().all(|c| {
|
2018-01-27 23:08:07 +00:00
|
|
|
c.is_ascii_alphanumeric() || c == '.' || c == '-' || c == '_'
|
2018-01-26 12:15:53 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
if !is_valid {
|
|
|
|
Err(RepoValidationError)
|
|
|
|
} else {
|
|
|
|
Ok(RepoQualifier(input.to_string()))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsRef<str> for RepoQualifier {
|
|
|
|
fn as_ref(&self) -> &str {
|
|
|
|
self.0.as_ref()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-27 09:47:12 +00:00
|
|
|
#[derive(Clone)]
|
2018-01-26 12:15:53 +00:00
|
|
|
pub struct RepoName(String);
|
|
|
|
|
|
|
|
impl FromStr for RepoName {
|
|
|
|
type Err = RepoValidationError;
|
|
|
|
|
|
|
|
fn from_str(input: &str) -> Result<RepoName, RepoValidationError> {
|
|
|
|
let is_valid = input.chars().all(|c| {
|
2018-01-27 23:08:07 +00:00
|
|
|
c.is_ascii_alphanumeric() || c == '.' || c == '-' || c == '_'
|
2018-01-26 12:15:53 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
if !is_valid {
|
|
|
|
Err(RepoValidationError)
|
|
|
|
} else {
|
|
|
|
Ok(RepoName(input.to_string()))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsRef<str> for RepoName {
|
|
|
|
fn as_ref(&self) -> &str {
|
|
|
|
self.0.as_ref()
|
|
|
|
}
|
|
|
|
}
|