Edits history of script submission #1383 for ' List public repositories (bitbucket)'

  • nativets
    One script reply has been approved by the moderators
    Ap­pro­ved
    type Bitbucket = {
      username: string;
      password: string;
    };
    /**
     * List public repositories
     * Returns a paginated list of all public repositories.
    
    This endpoint also supports filtering and sorting of the results. See
    filtering and sorting for more details.
     */
    export async function main(
      auth: Bitbucket,
      after: string | undefined,
      role: "admin" | "contributor" | "member" | "owner" | undefined,
      q: string | undefined,
      sort: string | undefined
    ) {
      const url = new URL(`https://api.bitbucket.org/2.0/repositories`);
      for (const [k, v] of [
        ["after", after],
        ["role", role],
        ["q", q],
        ["sort", sort],
      ]) {
        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 375 days ago

  • nativets
    type Bitbucket = {
      username: string;
      password: string;
    };
    /**
     * List public repositories
     * Returns a paginated list of all public repositories.
    
    This endpoint also supports filtering and sorting of the results. See
    filtering and sorting for more details.
     */
    export async function main(
      auth: Bitbucket,
      after: string | undefined,
      role: "admin" | "contributor" | "member" | "owner" | undefined,
      q: string | undefined,
      sort: string | undefined
    ) {
      const url = new URL(`https://api.bitbucket.org/2.0/repositories`);
      for (const [k, v] of [
        ["after", after],
        ["role", role],
        ["q", q],
        ["sort", sort],
      ]) {
        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 880 days ago

  • nativets
    type Bitbucket = {
      username: string;
      password: string;
    };
    /**
     * List public repositories
     * Returns a paginated list of all public repositories.
    
    This endpoint also supports filtering and sorting of the results. See
    [filtering and sorting](/cloud/bitbucket/rest/intro/#filtering) for more details.
     */
    export async function main(
      auth: Bitbucket,
      after: string | undefined,
      role: "admin" | "contributor" | "member" | "owner" | undefined,
      q: string | undefined,
      sort: string | undefined
    ) {
      const url = new URL(`https://api.bitbucket.org/2.0/repositories`);
      for (const [k, v] of [
        ["after", after],
        ["role", role],
        ["q", q],
        ["sort", sort],
      ]) {
        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 935 days ago