2020-08-01 03:43:15 +02:00
|
|
|
"use strict";
|
|
|
|
|
2020-07-25 00:12:17 +02:00
|
|
|
const emoji = require("../shared/js/emoji");
|
2020-07-15 01:29:15 +02:00
|
|
|
const render_admin_emoji_list = require("../templates/admin_emoji_list.hbs");
|
2019-11-02 00:06:25 +01:00
|
|
|
const render_settings_emoji_settings_tip = require("../templates/settings/emoji_settings_tip.hbs");
|
2019-07-09 21:24:00 +02:00
|
|
|
|
2020-08-20 21:24:06 +02:00
|
|
|
const people = require("./people");
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const meta = {
|
2017-04-08 17:24:07 +02:00
|
|
|
loaded: false,
|
|
|
|
};
|
|
|
|
|
2018-06-08 15:30:44 +02:00
|
|
|
exports.can_add_emoji = function () {
|
|
|
|
if (page_params.is_guest) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (page_params.is_admin) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// for normal users, we depend on the setting
|
|
|
|
return !page_params.realm_add_emoji_by_admins_only;
|
|
|
|
};
|
|
|
|
|
2017-05-18 22:03:03 +02:00
|
|
|
function can_admin_emoji(emoji) {
|
|
|
|
if (page_params.is_admin) {
|
|
|
|
return true;
|
|
|
|
}
|
2020-05-29 11:11:48 +02:00
|
|
|
if (emoji.author_id === null) {
|
2017-05-31 18:49:41 +02:00
|
|
|
// If we don't have the author information then only admin is allowed to disable that emoji.
|
|
|
|
return false;
|
|
|
|
}
|
2020-05-29 11:11:48 +02:00
|
|
|
if (!page_params.realm_add_emoji_by_admins_only && people.is_my_user_id(emoji.author_id)) {
|
2017-05-18 22:03:03 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-07-12 20:23:51 +02:00
|
|
|
exports.update_custom_emoji_ui = function () {
|
2019-11-02 00:06:25 +01:00
|
|
|
const rendered_tip = render_settings_emoji_settings_tip({
|
2017-07-13 20:53:27 +02:00
|
|
|
realm_add_emoji_by_admins_only: page_params.realm_add_emoji_by_admins_only,
|
|
|
|
});
|
2020-07-15 01:29:15 +02:00
|
|
|
$("#emoji-settings").find(".emoji-settings-tip-container").html(rendered_tip);
|
2017-07-12 20:23:51 +02:00
|
|
|
if (page_params.realm_add_emoji_by_admins_only && !page_params.is_admin) {
|
2020-07-15 01:29:15 +02:00
|
|
|
$(".add-emoji-text").hide();
|
|
|
|
$(".admin-emoji-form").hide();
|
2017-07-12 20:23:51 +02:00
|
|
|
} else {
|
2020-07-15 01:29:15 +02:00
|
|
|
$(".add-emoji-text").show();
|
|
|
|
$(".admin-emoji-form").show();
|
2017-07-12 20:23:51 +02:00
|
|
|
}
|
2017-07-13 20:53:27 +02:00
|
|
|
|
2020-07-24 00:42:44 +02:00
|
|
|
exports.populate_emoji();
|
2017-07-12 20:23:51 +02:00
|
|
|
};
|
|
|
|
|
2017-04-17 16:51:27 +02:00
|
|
|
exports.reset = function () {
|
|
|
|
meta.loaded = false;
|
|
|
|
};
|
|
|
|
|
2020-04-12 12:13:47 +02:00
|
|
|
function sort_author_full_name(a, b) {
|
|
|
|
if (a.author.full_name > b.author.full_name) {
|
|
|
|
return 1;
|
|
|
|
} else if (a.author.full_name === b.author.full_name) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2020-07-24 00:42:44 +02:00
|
|
|
exports.populate_emoji = function () {
|
2017-04-08 17:24:07 +02:00
|
|
|
if (!meta.loaded) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-07-24 00:39:22 +02:00
|
|
|
const emoji_data = emoji.get_server_realm_emoji_data();
|
2020-07-24 00:42:44 +02:00
|
|
|
|
2020-05-29 11:11:48 +02:00
|
|
|
for (const emoji of Object.values(emoji_data)) {
|
|
|
|
// Add people.js data for the user here.
|
|
|
|
if (emoji.author_id !== null) {
|
|
|
|
emoji.author = people.get_by_user_id(emoji.author_id);
|
|
|
|
} else {
|
|
|
|
emoji.author = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
const emoji_table = $("#admin_emoji_table").expectOne();
|
2021-01-29 10:27:56 +01:00
|
|
|
ListWidget.create(emoji_table, Object.values(emoji_data), {
|
2019-08-16 10:52:48 +02:00
|
|
|
name: "emoji_list",
|
2020-07-20 22:18:43 +02:00
|
|
|
modifier(item) {
|
2019-08-16 10:52:48 +02:00
|
|
|
if (item.deactivated !== true) {
|
|
|
|
return render_admin_emoji_list({
|
|
|
|
emoji: {
|
|
|
|
name: item.name,
|
2020-07-15 01:29:15 +02:00
|
|
|
display_name: item.name.replace(/_/g, " "),
|
2019-08-16 10:52:48 +02:00
|
|
|
source_url: item.source_url,
|
2020-07-15 01:29:15 +02:00
|
|
|
author: item.author || "",
|
2019-08-16 10:52:48 +02:00
|
|
|
can_admin_emoji: can_admin_emoji(item),
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
},
|
|
|
|
filter: {
|
|
|
|
element: emoji_table.closest(".settings-section").find(".search"),
|
2020-07-20 22:18:43 +02:00
|
|
|
predicate(item, value) {
|
js: Convert a.indexOf(…) !== -1 to a.includes(…).
Babel polyfills this for us for Internet Explorer.
import * as babelParser from "recast/parsers/babel";
import * as recast from "recast";
import * as tsParser from "recast/parsers/typescript";
import { builders as b, namedTypes as n } from "ast-types";
import K from "ast-types/gen/kinds";
import fs from "fs";
import path from "path";
import process from "process";
const checkExpression = (node: n.Node): node is K.ExpressionKind =>
n.Expression.check(node);
for (const file of process.argv.slice(2)) {
console.log("Parsing", file);
const ast = recast.parse(fs.readFileSync(file, { encoding: "utf8" }), {
parser: path.extname(file) === ".ts" ? tsParser : babelParser,
});
let changed = false;
recast.visit(ast, {
visitBinaryExpression(path) {
const { operator, left, right } = path.node;
if (
n.CallExpression.check(left) &&
n.MemberExpression.check(left.callee) &&
!left.callee.computed &&
n.Identifier.check(left.callee.property) &&
left.callee.property.name === "indexOf" &&
left.arguments.length === 1 &&
checkExpression(left.arguments[0]) &&
((["===", "!==", "==", "!=", ">", "<="].includes(operator) &&
n.UnaryExpression.check(right) &&
right.operator == "-" &&
n.Literal.check(right.argument) &&
right.argument.value === 1) ||
([">=", "<"].includes(operator) &&
n.Literal.check(right) &&
right.value === 0))
) {
const test = b.callExpression(
b.memberExpression(left.callee.object, b.identifier("includes")),
[left.arguments[0]]
);
path.replace(
["!==", "!=", ">", ">="].includes(operator)
? test
: b.unaryExpression("!", test)
);
changed = true;
}
this.traverse(path);
},
});
if (changed) {
console.log("Writing", file);
fs.writeFileSync(file, recast.print(ast).code, { encoding: "utf8" });
}
}
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-02-08 04:55:06 +01:00
|
|
|
return item.name.toLowerCase().includes(value);
|
2019-08-16 10:52:48 +02:00
|
|
|
},
|
2020-07-20 22:18:43 +02:00
|
|
|
onupdate() {
|
2019-08-16 10:52:48 +02:00
|
|
|
ui.reset_scrollbar(emoji_table);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
parent_container: $("#emoji-settings").expectOne(),
|
2020-04-11 16:23:29 +02:00
|
|
|
sort_fields: {
|
|
|
|
author_full_name: sort_author_full_name,
|
|
|
|
},
|
2020-07-15 01:29:15 +02:00
|
|
|
init_sort: ["alphabetic", "name"],
|
|
|
|
simplebar_container: $("#emoji-settings .progressive-table-wrapper"),
|
2020-04-11 16:23:29 +02:00
|
|
|
});
|
2019-08-16 11:03:10 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
loading.destroy_indicator($("#admin_page_emoji_loading_indicator"));
|
2017-04-08 17:24:07 +02:00
|
|
|
};
|
|
|
|
|
2020-04-08 23:40:20 +02:00
|
|
|
exports.build_emoji_upload_widget = function () {
|
|
|
|
const get_file_input = function () {
|
2020-07-15 01:29:15 +02:00
|
|
|
return $("#emoji_file_input");
|
2020-04-08 23:40:20 +02:00
|
|
|
};
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
const file_name_field = $("#emoji-file-name");
|
|
|
|
const input_error = $("#emoji_file_input_error");
|
|
|
|
const clear_button = $("#emoji_image_clear_button");
|
|
|
|
const upload_button = $("#emoji_upload_button");
|
|
|
|
const preview_text = $("#emoji_preview_text");
|
|
|
|
const preview_image = $("#emoji_preview_image");
|
2020-04-08 23:40:20 +02:00
|
|
|
|
|
|
|
return upload_widget.build_widget(
|
|
|
|
get_file_input,
|
|
|
|
file_name_field,
|
|
|
|
input_error,
|
|
|
|
clear_button,
|
|
|
|
upload_button,
|
|
|
|
preview_text,
|
2020-07-02 02:16:03 +02:00
|
|
|
preview_image,
|
2020-04-08 23:40:20 +02:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2017-04-08 17:24:07 +02:00
|
|
|
exports.set_up = function () {
|
|
|
|
meta.loaded = true;
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
loading.make_indicator($("#admin_page_emoji_loading_indicator"));
|
2017-04-08 17:24:07 +02:00
|
|
|
|
|
|
|
// Populate emoji table
|
2020-07-24 00:42:44 +02:00
|
|
|
exports.populate_emoji();
|
2017-04-08 17:24:07 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$(".admin_emoji_table").on("click", ".delete", function (e) {
|
2017-04-08 17:24:07 +02:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
2019-11-02 00:06:25 +01:00
|
|
|
const btn = $(this);
|
2017-04-08 17:24:07 +02:00
|
|
|
|
|
|
|
channel.del({
|
2020-07-15 01:29:15 +02:00
|
|
|
url: "/json/realm/emoji/" + encodeURIComponent(btn.attr("data-emoji-name")),
|
2020-07-20 22:18:43 +02:00
|
|
|
error(xhr) {
|
2018-03-25 11:12:06 +02:00
|
|
|
ui_report.generic_row_button_error(xhr, btn);
|
2017-04-08 17:24:07 +02:00
|
|
|
},
|
2020-07-20 22:18:43 +02:00
|
|
|
success() {
|
2020-07-15 01:29:15 +02:00
|
|
|
const row = btn.parents("tr");
|
2017-04-08 17:24:07 +02:00
|
|
|
row.remove();
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-04-08 23:40:20 +02:00
|
|
|
const emoji_widget = exports.build_emoji_upload_widget();
|
2017-03-13 05:45:50 +01:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
$(".organization form.admin-emoji-form")
|
|
|
|
.off("submit")
|
|
|
|
.on("submit", function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
const emoji_status = $("#admin-emoji-status");
|
|
|
|
const emoji = {};
|
|
|
|
const formData = new FormData();
|
|
|
|
|
|
|
|
for (const obj of $(this).serializeArray()) {
|
|
|
|
emoji[obj.name] = obj.value;
|
|
|
|
}
|
js: Automatically convert _.each to for…of.
This commit was automatically generated by the following script,
followed by lint --fix and a few small manual lint-related cleanups.
import * as babelParser from "recast/parsers/babel";
import * as recast from "recast";
import * as tsParser from "recast/parsers/typescript";
import { builders as b, namedTypes as n } from "ast-types";
import { Context } from "ast-types/lib/path-visitor";
import K from "ast-types/gen/kinds";
import { NodePath } from "ast-types/lib/node-path";
import assert from "assert";
import fs from "fs";
import path from "path";
import process from "process";
const checkExpression = (node: n.Node): node is K.ExpressionKind =>
n.Expression.check(node);
const checkStatement = (node: n.Node): node is K.StatementKind =>
n.Statement.check(node);
for (const file of process.argv.slice(2)) {
console.log("Parsing", file);
const ast = recast.parse(fs.readFileSync(file, { encoding: "utf8" }), {
parser: path.extname(file) === ".ts" ? tsParser : babelParser,
});
let changed = false;
let inLoop = false;
let replaceReturn = false;
const visitLoop = (...args: string[]) =>
function(this: Context, path: NodePath) {
for (const arg of args) {
this.visit(path.get(arg));
}
const old = { inLoop };
inLoop = true;
this.visit(path.get("body"));
inLoop = old.inLoop;
return false;
};
recast.visit(ast, {
visitDoWhileStatement: visitLoop("test"),
visitExpressionStatement(path) {
const { expression, comments } = path.node;
let valueOnly;
if (
n.CallExpression.check(expression) &&
n.MemberExpression.check(expression.callee) &&
!expression.callee.computed &&
n.Identifier.check(expression.callee.object) &&
expression.callee.object.name === "_" &&
n.Identifier.check(expression.callee.property) &&
["each", "forEach"].includes(expression.callee.property.name) &&
[2, 3].includes(expression.arguments.length) &&
checkExpression(expression.arguments[0]) &&
(n.FunctionExpression.check(expression.arguments[1]) ||
n.ArrowFunctionExpression.check(expression.arguments[1])) &&
[1, 2].includes(expression.arguments[1].params.length) &&
n.Identifier.check(expression.arguments[1].params[0]) &&
((valueOnly = expression.arguments[1].params[1] === undefined) ||
n.Identifier.check(expression.arguments[1].params[1])) &&
(expression.arguments[2] === undefined ||
n.ThisExpression.check(expression.arguments[2]))
) {
const old = { inLoop, replaceReturn };
inLoop = false;
replaceReturn = true;
this.visit(
path
.get("expression")
.get("arguments")
.get(1)
.get("body")
);
inLoop = old.inLoop;
replaceReturn = old.replaceReturn;
const [right, { body, params }] = expression.arguments;
const loop = b.forOfStatement(
b.variableDeclaration("let", [
b.variableDeclarator(
valueOnly ? params[0] : b.arrayPattern([params[1], params[0]])
),
]),
valueOnly
? right
: b.callExpression(
b.memberExpression(right, b.identifier("entries")),
[]
),
checkStatement(body) ? body : b.expressionStatement(body)
);
loop.comments = comments;
path.replace(loop);
changed = true;
}
this.traverse(path);
},
visitForStatement: visitLoop("init", "test", "update"),
visitForInStatement: visitLoop("left", "right"),
visitForOfStatement: visitLoop("left", "right"),
visitFunction(path) {
this.visit(path.get("params"));
const old = { replaceReturn };
replaceReturn = false;
this.visit(path.get("body"));
replaceReturn = old.replaceReturn;
return false;
},
visitReturnStatement(path) {
if (replaceReturn) {
assert(!inLoop); // could use labeled continue if this ever fires
const { argument, comments } = path.node;
if (argument === null) {
const s = b.continueStatement();
s.comments = comments;
path.replace(s);
} else {
const s = b.expressionStatement(argument);
s.comments = comments;
path.replace(s, b.continueStatement());
}
return false;
}
this.traverse(path);
},
visitWhileStatement: visitLoop("test"),
});
if (changed) {
console.log("Writing", file);
fs.writeFileSync(file, recast.print(ast).code, { encoding: "utf8" });
}
}
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-02-06 06:19:47 +01:00
|
|
|
|
2020-12-29 09:57:34 +01:00
|
|
|
if (emoji.name.trim() === "") {
|
|
|
|
ui_report.message(
|
|
|
|
i18n.t("Failed: Emoji name is required."),
|
|
|
|
emoji_status,
|
|
|
|
"alert-error",
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$("#admin_emoji_submit").prop("disabled", true);
|
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
for (const [i, file] of Array.prototype.entries.call($("#emoji_file_input")[0].files)) {
|
|
|
|
formData.append("file-" + i, file);
|
|
|
|
}
|
|
|
|
channel.post({
|
|
|
|
url: "/json/realm/emoji/" + encodeURIComponent(emoji.name),
|
|
|
|
data: formData,
|
|
|
|
cache: false,
|
|
|
|
processData: false,
|
|
|
|
contentType: false,
|
2020-07-20 22:18:43 +02:00
|
|
|
success() {
|
2020-07-15 00:34:28 +02:00
|
|
|
$("#admin-emoji-status").hide();
|
|
|
|
ui_report.success(i18n.t("Custom emoji added!"), emoji_status);
|
|
|
|
$("form.admin-emoji-form input[type='text']").val("");
|
2020-07-22 02:59:06 +02:00
|
|
|
$("#admin_emoji_submit").prop("disabled", false);
|
2020-07-15 00:34:28 +02:00
|
|
|
emoji_widget.clear();
|
|
|
|
},
|
2020-07-20 22:18:43 +02:00
|
|
|
error(xhr) {
|
2020-07-15 00:34:28 +02:00
|
|
|
$("#admin-emoji-status").hide();
|
|
|
|
const errors = JSON.parse(xhr.responseText).msg;
|
|
|
|
xhr.responseText = JSON.stringify({msg: errors});
|
|
|
|
ui_report.error(i18n.t("Failed"), xhr, emoji_status);
|
2020-07-22 02:59:06 +02:00
|
|
|
$("#admin_emoji_submit").prop("disabled", false);
|
2020-07-15 00:34:28 +02:00
|
|
|
},
|
|
|
|
});
|
2017-04-08 17:24:07 +02:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2019-10-25 09:45:13 +02:00
|
|
|
window.settings_emoji = exports;
|