mirror of
https://github.com/pesde-pkg/pesde.git
synced 2024-12-12 11:00:36 +00:00
fix: validate package names are lowercase
This commit is contained in:
parent
b4c447a129
commit
b6f35b6209
3 changed files with 12 additions and 4 deletions
|
@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- Listen for device flow completion without requiring pressing enter by @daimond113
|
- Listen for device flow completion without requiring pressing enter by @daimond113
|
||||||
- Sync scripts repo in background by @daimond113
|
- Sync scripts repo in background by @daimond113
|
||||||
- Don't make CAS files read-only on Windows (file removal is disallowed if the file is read-only) by @daimond113
|
- Don't make CAS files read-only on Windows (file removal is disallowed if the file is read-only) by @daimond113
|
||||||
|
- Validate package names are lowercase by @daimond113
|
||||||
|
|
||||||
### Performance
|
### Performance
|
||||||
- Clone dependency repos shallowly by @daimond113
|
- Clone dependency repos shallowly by @daimond113
|
||||||
|
|
|
@ -122,7 +122,8 @@ impl StorageImpl for S3Storage {
|
||||||
let object_url = PutObject::new(
|
let object_url = PutObject::new(
|
||||||
&self.s3_bucket,
|
&self.s3_bucket,
|
||||||
Some(&self.s3_credentials),
|
Some(&self.s3_credentials),
|
||||||
&format!("doc/{}.gz", doc_hash),
|
// capitalize Doc to prevent conflicts with scope names
|
||||||
|
&format!("Doc/{}.gz", doc_hash),
|
||||||
)
|
)
|
||||||
.sign(S3_SIGN_DURATION);
|
.sign(S3_SIGN_DURATION);
|
||||||
|
|
||||||
|
@ -142,7 +143,7 @@ impl StorageImpl for S3Storage {
|
||||||
let object_url = GetObject::new(
|
let object_url = GetObject::new(
|
||||||
&self.s3_bucket,
|
&self.s3_bucket,
|
||||||
Some(&self.s3_credentials),
|
Some(&self.s3_credentials),
|
||||||
&format!("doc/{}.gz", doc_hash),
|
&format!("Doc/{}.gz", doc_hash),
|
||||||
)
|
)
|
||||||
.sign(S3_SIGN_DURATION);
|
.sign(S3_SIGN_DURATION);
|
||||||
|
|
||||||
|
|
10
src/names.rs
10
src/names.rs
|
@ -47,7 +47,10 @@ impl FromStr for PackageName {
|
||||||
return Err(Self::Err::PrePostfixUnderscore(reason, part.to_string()));
|
return Err(Self::Err::PrePostfixUnderscore(reason, part.to_string()));
|
||||||
}
|
}
|
||||||
|
|
||||||
if !part.chars().all(|c| c.is_ascii_alphanumeric() || c == '_') {
|
if !part
|
||||||
|
.chars()
|
||||||
|
.all(|c| c.is_ascii_lowercase() || c.is_ascii_digit() || c == '_')
|
||||||
|
{
|
||||||
return Err(Self::Err::InvalidCharacters(reason, part.to_string()));
|
return Err(Self::Err::InvalidCharacters(reason, part.to_string()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -172,7 +175,10 @@ pub mod wally {
|
||||||
return Err(Self::Err::InvalidLength(reason, part.to_string()));
|
return Err(Self::Err::InvalidLength(reason, part.to_string()));
|
||||||
}
|
}
|
||||||
|
|
||||||
if !part.chars().all(|c| c.is_ascii_alphanumeric() || c == '-') {
|
if !part
|
||||||
|
.chars()
|
||||||
|
.all(|c| c.is_ascii_lowercase() || c.is_ascii_digit() || c == '-')
|
||||||
|
{
|
||||||
return Err(Self::Err::InvalidCharacters(reason, part.to_string()));
|
return Err(Self::Err::InvalidCharacters(reason, part.to_string()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue