Edits history of script submission #3832 for ' Get worklogs (jira)'

  • nativets
    One script reply has been approved by the moderators
    Ap­pro­ved
    type Jira = {
      username: string;
      password: string;
      domain: string;
    };
    /**
     * Get worklogs
     * Returns worklog details for a list of worklog IDs.
    
    The returned list of worklogs is limited to 1000 items.
    
    **[Permissions](#permissions) required:** Permission to access Jira, however, worklogs are only returned where either of the following is true:
    
     *  the worklog is set as *Viewable by All Users*.
     *  the user is a member of a project role or group with permission to view the worklog.
     */
    export async function main(
      auth: Jira,
      expand: string | undefined,
      body: { ids: number[] }
    ) {
      const url = new URL(
        `https://${auth.domain}.atlassian.net/rest/api/2/worklog/list`
      );
      for (const [k, v] of [["expand", expand]]) {
        if (v !== undefined && v !== "") {
          url.searchParams.append(k, v);
        }
      }
      const response = await fetch(url, {
        method: "POST",
        headers: {
          "Content-Type": "application/json",
          Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
        },
        body: JSON.stringify(body),
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 396 days ago

  • nativets
    type Jira = {
      username: string;
      password: string;
      domain: string;
    };
    /**
     * Get worklogs
     * Returns worklog details for a list of worklog IDs.
    
    The returned list of worklogs is limited to 1000 items.
    
    **[Permissions](#permissions) required:** Permission to access Jira, however, worklogs are only returned where either of the following is true:
    
     *  the worklog is set as *Viewable by All Users*.
     *  the user is a member of a project role or group with permission to view the worklog.
     */
    export async function main(
      auth: Jira,
      expand: string | undefined,
      body: { ids: number[] }
    ) {
      const url = new URL(
        `https://${auth.domain}.atlassian.net/rest/api/2/worklog/list`
      );
      for (const [k, v] of [["expand", expand]]) {
        if (v !== undefined && v !== "") {
          url.searchParams.append(k, v);
        }
      }
      const response = await fetch(url, {
        method: "POST",
        headers: {
          "Content-Type": "application/json",
          Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
        },
        body: JSON.stringify(body),
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 948 days ago