mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:30:57 +08:00
f13ec11c64
* Added scopes UI * Create scopes when creating a new API key * Show scopes on the API key show route * Apply scopes on API requests * Extend scopes from plugins * Add missing scopes. A mapping can be associated with multiple controller actions * Only send scopes if the use global key option is disabled. Use the discourse plugin registry to add new scopes * Add not null validations and index for api_key_id * Annotate model * DEV: Move default mappings to ApiKeyScope * Remove unused attribute and improve UI for existing keys * Support multiple parameters separated by a comma
56 lines
1.4 KiB
JavaScript
56 lines
1.4 KiB
JavaScript
import discourseComputed from "discourse-common/utils/decorators";
|
|
import AdminUser from "admin/models/admin-user";
|
|
import RestModel from "discourse/models/rest";
|
|
import { ajax } from "discourse/lib/ajax";
|
|
import { computed } from "@ember/object";
|
|
import { fmt } from "discourse/lib/computed";
|
|
|
|
const ApiKey = RestModel.extend({
|
|
user: computed("_user", {
|
|
get() {
|
|
return this._user;
|
|
},
|
|
set(key, value) {
|
|
if (value && !(value instanceof AdminUser)) {
|
|
this.set("_user", AdminUser.create(value));
|
|
} else {
|
|
this.set("_user", value);
|
|
}
|
|
return this._user;
|
|
}
|
|
}),
|
|
|
|
@discourseComputed("description")
|
|
shortDescription(description) {
|
|
if (!description || description.length < 40) return description;
|
|
return `${description.substring(0, 40)}...`;
|
|
},
|
|
|
|
truncatedKey: fmt("truncated_key", "%@..."),
|
|
|
|
revoke() {
|
|
return ajax(`${this.basePath}/revoke`, {
|
|
type: "POST"
|
|
}).then(result => this.setProperties(result.api_key));
|
|
},
|
|
|
|
undoRevoke() {
|
|
return ajax(`${this.basePath}/undo-revoke`, {
|
|
type: "POST"
|
|
}).then(result => this.setProperties(result.api_key));
|
|
},
|
|
|
|
createProperties() {
|
|
return this.getProperties("description", "username", "scopes");
|
|
},
|
|
|
|
@discourseComputed()
|
|
basePath() {
|
|
return this.store
|
|
.adapterFor("api-key")
|
|
.pathFor(this.store, "api-key", this.id);
|
|
}
|
|
});
|
|
|
|
export default ApiKey;
|