Compare commits

..

No commits in common. "ce69dc302c6eaad4fe5268cca3511620fcca12f8" and "65853a48634d662809eee5dafbe48535d400f4a0" have entirely different histories.

3 changed files with 25 additions and 60 deletions

View file

@ -259,7 +259,7 @@ duck --delete garage:/my-files/an-object.txt
## WinSCP (libs3) {#winscp} ## WinSCP (libs3) {#winscp}
*You can find instructions on how to use the GUI in french [in our wiki](https://guide.deuxfleurs.fr/prise_en_main/winscp/).* *You can find instructions on how to use the GUI in french [in our wiki](https://wiki.deuxfleurs.fr/fr/Guide/Garage/WinSCP).*
How to use `winscp.com`, the CLI interface of WinSCP: How to use `winscp.com`, the CLI interface of WinSCP:

View file

@ -54,8 +54,9 @@ impl AdminRpcHandler {
let bucket_id = self let bucket_id = self
.garage .garage
.bucket_helper() .bucket_helper()
.admin_get_existing_matching_bucket(&query.name) .resolve_global_bucket_name(&query.name)
.await?; .await?
.ok_or_bad_request("Bucket not found")?;
let bucket = self let bucket = self
.garage .garage
@ -156,8 +157,9 @@ impl AdminRpcHandler {
let bucket_id = helper let bucket_id = helper
.bucket() .bucket()
.admin_get_existing_matching_bucket(&query.name) .resolve_global_bucket_name(&query.name)
.await?; .await?
.ok_or_bad_request("Bucket not found")?;
// Get the alias, but keep in minde here the bucket name // Get the alias, but keep in minde here the bucket name
// given in parameter can also be directly the bucket's ID. // given in parameter can also be directly the bucket's ID.
@ -233,8 +235,9 @@ impl AdminRpcHandler {
let bucket_id = helper let bucket_id = helper
.bucket() .bucket()
.admin_get_existing_matching_bucket(&query.existing_bucket) .resolve_global_bucket_name(&query.existing_bucket)
.await?; .await?
.ok_or_bad_request("Bucket not found")?;
if let Some(key_pattern) = &query.local { if let Some(key_pattern) = &query.local {
let key = helper.key().get_existing_matching_key(key_pattern).await?; let key = helper.key().get_existing_matching_key(key_pattern).await?;
@ -304,8 +307,9 @@ impl AdminRpcHandler {
let bucket_id = helper let bucket_id = helper
.bucket() .bucket()
.admin_get_existing_matching_bucket(&query.bucket) .resolve_global_bucket_name(&query.bucket)
.await?; .await?
.ok_or_bad_request("Bucket not found")?;
let key = helper let key = helper
.key() .key()
.get_existing_matching_key(&query.key_pattern) .get_existing_matching_key(&query.key_pattern)
@ -339,8 +343,9 @@ impl AdminRpcHandler {
let bucket_id = helper let bucket_id = helper
.bucket() .bucket()
.admin_get_existing_matching_bucket(&query.bucket) .resolve_global_bucket_name(&query.bucket)
.await?; .await?
.ok_or_bad_request("Bucket not found")?;
let key = helper let key = helper
.key() .key()
.get_existing_matching_key(&query.key_pattern) .get_existing_matching_key(&query.key_pattern)
@ -373,8 +378,9 @@ impl AdminRpcHandler {
let bucket_id = self let bucket_id = self
.garage .garage
.bucket_helper() .bucket_helper()
.admin_get_existing_matching_bucket(&query.bucket) .resolve_global_bucket_name(&query.bucket)
.await?; .await?
.ok_or_bad_request("Bucket not found")?;
let mut bucket = self let mut bucket = self
.garage .garage
@ -414,8 +420,9 @@ impl AdminRpcHandler {
let bucket_id = self let bucket_id = self
.garage .garage
.bucket_helper() .bucket_helper()
.admin_get_existing_matching_bucket(&query.bucket) .resolve_global_bucket_name(&query.bucket)
.await?; .await?
.ok_or_bad_request("Bucket not found")?;
let mut bucket = self let mut bucket = self
.garage .garage
@ -472,8 +479,9 @@ impl AdminRpcHandler {
bucket_ids.push( bucket_ids.push(
self.garage self.garage
.bucket_helper() .bucket_helper()
.admin_get_existing_matching_bucket(b) .resolve_global_bucket_name(b)
.await?, .await?
.ok_or_bad_request(format!("Bucket not found: {}", b))?,
); );
} }

View file

@ -67,49 +67,6 @@ impl<'a> BucketHelper<'a> {
} }
} }
/// Find a bucket by its global alias or a prefix of its uuid
pub async fn admin_get_existing_matching_bucket(
&self,
pattern: &String,
) -> Result<Uuid, Error> {
if let Some(uuid) = self.resolve_global_bucket_name(pattern).await? {
return Ok(uuid);
} else if pattern.len() >= 2 {
let hexdec = pattern
.get(..pattern.len() & !1)
.and_then(|x| hex::decode(x).ok());
if let Some(hex) = hexdec {
let mut start = [0u8; 32];
start
.as_mut_slice()
.get_mut(..hex.len())
.ok_or_bad_request("invalid length")?
.copy_from_slice(&hex);
let mut candidates = self
.0
.bucket_table
.get_range(
&EmptyKey,
Some(start.into()),
Some(DeletedFilter::NotDeleted),
10,
EnumerationOrder::Forward,
)
.await?
.into_iter()
.collect::<Vec<_>>();
candidates.retain(|x| hex::encode(x.id).starts_with(pattern));
if candidates.len() == 1 {
return Ok(candidates.into_iter().next().unwrap().id);
}
}
}
Err(Error::BadRequest(format!(
"Bucket not found / several matching buckets: {}",
pattern
)))
}
/// Returns a Bucket if it is present in bucket table, /// Returns a Bucket if it is present in bucket table,
/// even if it is in deleted state. Querying a non-existing /// even if it is in deleted state. Querying a non-existing
/// bucket ID returns an internal error. /// bucket ID returns an internal error.