Edits history of script submission #15772 for ' Get a list of user actions (discourse)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Discourse = {
      apiKey: string;
      defaultHost: string;
      apiUsername: string;
    };
    /**
     * Get a list of user actions
     *
     */
    export async function main(
      auth: Discourse,
      offset: string | undefined,
      username: string | undefined,
      filter: string | undefined,
    ) {
      const url = new URL(`https://${auth.defaultHost}/user_actions.json`);
      for (const [k, v] of [
        ["offset", offset],
        ["username", username],
        ["filter", filter],
      ]) {
        if (v !== undefined && v !== "" && k !== undefined) {
          url.searchParams.append(k, v);
        }
      }
      const response = await fetch(url, {
        method: "GET",
        headers: {
          "API-KEY": auth.apiKey,
          "API-USERNAME": auth.apiUsername,
        },
        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