Edits history of script submission #15336 for ' Search users (confluence)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Confluence = {
    	email: string
    	apiToken: string
    	domain: string
    }
    /**
     * Search users
     * Searches for users using user-specific queries from the
    [Confluence Query Language (CQL)](https://developer.
     */
    export async function main(
    	auth: Confluence,
    	cql: string | undefined,
    	start: string | undefined,
    	limit: string | undefined,
    	expand: string | undefined,
    	sitePermissionTypeFilter: 'all' | 'externalCollaborator' | 'none' | undefined
    ) {
    	const url = new URL(`https://${auth.domain}/wiki/rest/api/search/user`)
    	for (const [k, v] of [
    		['cql', cql],
    		['start', start],
    		['limit', limit],
    		['expand', expand],
    		['sitePermissionTypeFilter', sitePermissionTypeFilter]
    	]) {
    		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