type Jira = {
username: string;
password: string;
domain: string;
};
/**
* Get valid project name
* Checks that a project name isn't in use. If the name isn't in use, the passed string is returned. If the name is in use, this operation attempts to generate a valid project name based on the one supplied, usually by adding a sequence number. If a valid project name cannot be generated, a 404 response is returned.
**[Permissions](#permissions) required:** None.
*/
export async function main(auth: Jira, name: string | undefined) {
const url = new URL(
`https://${auth.domain}.atlassian.net/rest/api/2/projectvalidate/validProjectName`
);
for (const [k, v] of [["name", name]]) {
if (v !== undefined && v !== "") {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 396 days ago
type Jira = {
username: string;
password: string;
domain: string;
};
/**
* Get valid project name
* Checks that a project name isn't in use. If the name isn't in use, the passed string is returned. If the name is in use, this operation attempts to generate a valid project name based on the one supplied, usually by adding a sequence number. If a valid project name cannot be generated, a 404 response is returned.
**[Permissions](#permissions) required:** None.
*/
export async function main(auth: Jira, name: string | undefined) {
const url = new URL(
`https://${auth.domain}.atlassian.net/rest/api/2/projectvalidate/validProjectName`
);
for (const [k, v] of [["name", name]]) {
if (v !== undefined && v !== "") {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 948 days ago