Edits history of script submission #15285 for ' Get long-running tasks (confluence)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Confluence = {
    	email: string
    	apiToken: string
    	domain: string
    }
    /**
     * Get long-running tasks
     * Returns information about all active long-running tasks (e.g. space export),
    such as how long each task has been running and the percentage of each task
    that has completed.
    
    **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**:
    Permission to access the Confluence site ('Can use' global permission).
     */
    export async function main(
    	auth: Confluence,
    	key: string | undefined,
    	start: string | undefined,
    	limit: string | undefined
    ) {
    	const url = new URL(`https://${auth.domain}/wiki/rest/api/longtask`)
    	for (const [k, v] of [
    		['key', key],
    		['start', start],
    		['limit', limit]
    	]) {
    		if (v !== undefined && v !== '' && k !== undefined) {
    			url.searchParams.append(k, v)
    		}
    	}
    	const response = await fetch(url, {
    		method: 'GET',
    		headers: {
    			Authorization: 'Basic ' + btoa(`${auth.email}:${auth.apiToken}`)
    		},
    		body: undefined
    	})
    	if (!response.ok) {
    		const text = await response.text()
    		throw new Error(`${response.status} ${text}`)
    	}
    	return await response.json()
    }
    

    Submitted by hugo697 235 days ago