mirror of
https://github.com/HeyPuter/puter.git
synced 2025-12-31 02:00:13 -06:00
110 lines
2.9 KiB
JavaScript
110 lines
2.9 KiB
JavaScript
export default class Perms {
|
|
constructor (context) {
|
|
this.authToken = context.authToken;
|
|
this.APIOrigin = context.APIOrigin;
|
|
}
|
|
setAuthToken (authToken) {
|
|
this.authToken = authToken;
|
|
}
|
|
setAPIOrigin (APIOrigin) {
|
|
this.APIOrigin = APIOrigin;
|
|
}
|
|
async req_ (route, body) {
|
|
const resp = await fetch(
|
|
this.APIOrigin + route, {
|
|
method: body ? 'POST' : 'GET',
|
|
headers: {
|
|
Authorization: `Bearer ${this.authToken}`,
|
|
'Content-Type': 'application/json',
|
|
},
|
|
...(body ? { body: JSON.stringify(body) } : {}),
|
|
}
|
|
);
|
|
return await resp.json();
|
|
}
|
|
|
|
// Grant Permissions
|
|
async grantUser (target_username, permission) {
|
|
return await this.req_('/auth/grant-user-user', {
|
|
target_username, permission,
|
|
})
|
|
}
|
|
|
|
async grantGroup (group_uid, permission) {
|
|
return await this.req_('/auth/grant-user-group', {
|
|
group_uid, permission,
|
|
})
|
|
}
|
|
|
|
async grantApp (app_uid, permission) {
|
|
return await this.req_('/auth/grant-user-app', {
|
|
app_uid, permission,
|
|
})
|
|
}
|
|
|
|
async grantAppAnyUser (app_uid, permission) {
|
|
return await this.req_('/auth/grant-dev-app', {
|
|
app_uid, permission,
|
|
})
|
|
}
|
|
|
|
async grantOrigin (origin, permission) {
|
|
return await this.req_('/auth/grant-user-app', {
|
|
origin, permission,
|
|
})
|
|
}
|
|
|
|
// Revoke Permissions
|
|
async revokeUser (target_username, permission) {
|
|
return await this.req_('/auth/revoke-user-user', {
|
|
target_username, permission,
|
|
})
|
|
}
|
|
|
|
async revokeGroup (group_uid, permission) {
|
|
return await this.req_('/auth/revoke-user-group', {
|
|
group_uid, permission,
|
|
})
|
|
}
|
|
|
|
async revokeApp (app_uid, permission) {
|
|
return await this.req_('/auth/revoke-user-app', {
|
|
app_uid, permission,
|
|
})
|
|
}
|
|
|
|
async revokeAppAnyUser (app_uid, permission) {
|
|
return await this.req_('/auth/revoke-dev-app', {
|
|
app_uid, permission,
|
|
})
|
|
}
|
|
|
|
async revokeOrigin (origin, permission) {
|
|
return await this.req_('/auth/revoke-user-app', {
|
|
origin, permission,
|
|
})
|
|
}
|
|
|
|
// Group Management
|
|
async createGroup (metadata = {}, extra = {}) {
|
|
return await this.req_('/group/create', {
|
|
metadata, extra,
|
|
});
|
|
}
|
|
async addUsersToGroup (uid, usernames) {
|
|
return await this.req_('/group/add-users', {
|
|
uid,
|
|
users: usernames ?? [],
|
|
});
|
|
}
|
|
async removeUsersFromGroup (uid, usernames) {
|
|
return await this.req_('/group/remove-users', {
|
|
uid,
|
|
users: usernames ?? [],
|
|
});
|
|
}
|
|
async listGroups () {
|
|
return await this.req_('/group/list');
|
|
}
|
|
}
|