2020-03-26 02:30:39 +08:00
|
|
|
import Category from "discourse/models/category";
|
|
|
|
import DiscourseURL from "discourse/lib/url";
|
2019-11-09 03:13:35 +08:00
|
|
|
import EmberObject from "@ember/object";
|
2016-07-01 01:55:44 +08:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
2020-03-26 02:30:39 +08:00
|
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
2019-11-09 03:13:35 +08:00
|
|
|
|
2023-03-17 18:18:42 +08:00
|
|
|
export default class Permalink extends EmberObject {
|
|
|
|
static findAll(filter) {
|
|
|
|
return ajax("/admin/permalinks.json", { data: { filter } }).then(function (
|
|
|
|
permalinks
|
|
|
|
) {
|
|
|
|
return permalinks.map((p) => Permalink.create(p));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-11-13 21:01:55 +08:00
|
|
|
save() {
|
2016-07-01 01:55:44 +08:00
|
|
|
return ajax("/admin/permalinks.json", {
|
2015-07-15 20:54:28 +08:00
|
|
|
type: "POST",
|
|
|
|
data: {
|
2019-05-27 16:15:39 +08:00
|
|
|
url: this.url,
|
|
|
|
permalink_type: this.permalink_type,
|
|
|
|
permalink_type_value: this.permalink_type_value,
|
2015-07-15 20:54:28 +08:00
|
|
|
},
|
|
|
|
});
|
2023-03-17 18:18:42 +08:00
|
|
|
}
|
2015-07-15 20:54:28 +08:00
|
|
|
|
2020-03-26 02:30:39 +08:00
|
|
|
@discourseComputed("category_id")
|
2021-11-13 21:01:55 +08:00
|
|
|
category(category_id) {
|
2020-03-26 02:30:39 +08:00
|
|
|
return Category.findById(category_id);
|
2023-03-17 18:18:42 +08:00
|
|
|
}
|
2020-03-26 02:30:39 +08:00
|
|
|
|
|
|
|
@discourseComputed("external_url")
|
2021-11-13 21:01:55 +08:00
|
|
|
linkIsExternal(external_url) {
|
2020-03-26 02:30:39 +08:00
|
|
|
return !DiscourseURL.isInternal(external_url);
|
2023-03-17 18:18:42 +08:00
|
|
|
}
|
2020-03-26 02:30:39 +08:00
|
|
|
|
2021-11-13 21:01:55 +08:00
|
|
|
destroy() {
|
2019-05-27 16:15:39 +08:00
|
|
|
return ajax("/admin/permalinks/" + this.id + ".json", {
|
2016-07-01 01:55:44 +08:00
|
|
|
type: "DELETE",
|
|
|
|
});
|
2023-03-17 18:18:42 +08:00
|
|
|
}
|
|
|
|
}
|