Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PR #3578/7e6d29c5 backport][stable-4.7] Creating a distribution - transform base_path, rename on failure #3593

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES/2253.fix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Creating a distribution - transform base_path, rename on failure
1 change: 1 addition & 0 deletions CHANGES/2277.fix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Creating a distribution - transform base_path, rename on failure
20 changes: 17 additions & 3 deletions src/containers/ansible-repository/edit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,19 +132,33 @@ const AnsibleRepositoryEdit = Page<AnsibleRepositoryType>({
});

if (createDistribution) {
// only alphanumerics, slashes, underscores and dashes are allowed in base_path, transform anything else to _
const basePathTransform = (name) =>
name.replaceAll(/[^-a-zA-Z0-9_/]/g, '_');
let distributionName = data.name;

promise = promise
.then((pulp_href) =>
AnsibleDistributionAPI.create({
name: data.name,
base_path: data.name,
name: distributionName,
base_path: basePathTransform(distributionName),
repository: pulp_href,
}).catch(() => {
// if distribution already exists, try a numeric suffix to name & base_path
distributionName =
data.name + Math.floor(Math.random() * Number.MAX_SAFE_INTEGER);
return AnsibleDistributionAPI.create({
name: distributionName,
base_path: basePathTransform(distributionName),
repository: pulp_href,
});
}),
)
.then(({ data: task }) =>
queueAlert(
taskAlert(
task,
t`Creation started for distribution ${data.name}`,
t`Creation started for distribution ${distributionName}`,
),
),
);
Expand Down