Edits history of script submission #1546 for ' Get an explicit user permission for a repository (bitbucket)'

  • nativets
    One script reply has been approved by the moderators
    Ap­pro­ved
    type Bitbucket = {
      username: string;
      password: string;
    };
    /**
     * Get an explicit user permission for a repository
     * Returns the explicit user permission for a given user and repository.
    
    Only users with admin permission for the repository may access this resource.
    
    Permissions can be:
    
    * `admin`
    * `write`
    * `read`
    * `none`
     */
    export async function main(
      auth: Bitbucket,
      repo_slug: string,
      selected_user_id: string,
      workspace: string
    ) {
      const url = new URL(
        `https://api.bitbucket.org/2.0/repositories/${workspace}/${repo_slug}/permissions-config/users/${selected_user_id}`
      );
    
      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;
    };
    /**
     * Get an explicit user permission for a repository
     * Returns the explicit user permission for a given user and repository.
    
    Only users with admin permission for the repository may access this resource.
    
    Permissions can be:
    
    * `admin`
    * `write`
    * `read`
    * `none`
     */
    export async function main(
      auth: Bitbucket,
      repo_slug: string,
      selected_user_id: string,
      workspace: string
    ) {
      const url = new URL(
        `https://api.bitbucket.org/2.0/repositories/${workspace}/${repo_slug}/permissions-config/users/${selected_user_id}`
      );
    
      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