2019-11-02 00:06:25 +01:00
|
|
|
const render_admin_emoji_list = require('../templates/admin_emoji_list.hbs');
|
|
|
|
const render_settings_emoji_settings_tip = require("../templates/settings/emoji_settings_tip.hbs");
|
2019-07-09 21:24:00 +02:00
|
|
|
|
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;
|
|
|
|
}
|
2017-05-31 18:49:41 +02:00
|
|
|
if (emoji.author === null) {
|
|
|
|
// If we don't have the author information then only admin is allowed to disable that emoji.
|
|
|
|
return false;
|
|
|
|
}
|
2017-05-18 22:03:03 +02:00
|
|
|
if (!page_params.realm_add_emoji_by_admins_only && people.is_current_user(emoji.author.email)) {
|
|
|
|
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,
|
|
|
|
});
|
2018-03-22 22:14:43 +01: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) {
|
|
|
|
$('.admin-emoji-form').hide();
|
|
|
|
$('#emoji-settings').removeClass('can_edit');
|
|
|
|
} else {
|
|
|
|
$('.admin-emoji-form').show();
|
|
|
|
$('#emoji-settings').addClass('can_edit');
|
|
|
|
}
|
2017-07-13 20:53:27 +02:00
|
|
|
|
2017-07-12 20:23:51 +02:00
|
|
|
exports.populate_emoji(page_params.realm_emoji);
|
|
|
|
};
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-04-08 17:24:07 +02:00
|
|
|
exports.populate_emoji = function (emoji_data) {
|
|
|
|
if (!meta.loaded) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const emoji_table = $('#admin_emoji_table').expectOne();
|
2020-04-13 11:55:25 +02:00
|
|
|
const emoji_list = list_render.create(emoji_table, Object.values(emoji_data), {
|
2019-08-16 10:52:48 +02:00
|
|
|
name: "emoji_list",
|
|
|
|
modifier: function (item) {
|
|
|
|
if (item.deactivated !== true) {
|
|
|
|
return render_admin_emoji_list({
|
|
|
|
emoji: {
|
|
|
|
name: item.name,
|
|
|
|
display_name: item.name.replace(/_/g, ' '),
|
|
|
|
source_url: item.source_url,
|
|
|
|
author: item.author || '',
|
|
|
|
can_admin_emoji: can_admin_emoji(item),
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
},
|
|
|
|
filter: {
|
|
|
|
element: emoji_table.closest(".settings-section").find(".search"),
|
2019-12-30 17:44:24 +01:00
|
|
|
predicate: function (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
|
|
|
},
|
|
|
|
onupdate: function () {
|
|
|
|
ui.reset_scrollbar(emoji_table);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
parent_container: $("#emoji-settings").expectOne(),
|
2020-04-13 11:55:25 +02:00
|
|
|
}).init();
|
|
|
|
|
|
|
|
emoji_list.sort("alphabetic", "name");
|
|
|
|
emoji_list.add_sort_function("author_full_name", sort_author_full_name);
|
2019-08-16 11:03:10 +02:00
|
|
|
|
2017-04-08 17:24:07 +02:00
|
|
|
loading.destroy_indicator($('#admin_page_emoji_loading_indicator'));
|
|
|
|
};
|
|
|
|
|
2020-04-08 23:40:20 +02:00
|
|
|
exports.build_emoji_upload_widget = function () {
|
|
|
|
const get_file_input = function () {
|
|
|
|
return $('#emoji_file_input');
|
|
|
|
};
|
|
|
|
|
|
|
|
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');
|
|
|
|
|
|
|
|
return upload_widget.build_widget(
|
|
|
|
get_file_input,
|
|
|
|
file_name_field,
|
|
|
|
input_error,
|
|
|
|
clear_button,
|
|
|
|
upload_button,
|
|
|
|
preview_text,
|
|
|
|
preview_image
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2017-04-08 17:24:07 +02:00
|
|
|
exports.set_up = function () {
|
|
|
|
meta.loaded = true;
|
|
|
|
|
|
|
|
loading.make_indicator($('#admin_page_emoji_loading_indicator'));
|
|
|
|
|
|
|
|
// Populate emoji table
|
|
|
|
exports.populate_emoji(page_params.realm_emoji);
|
|
|
|
|
|
|
|
$('.admin_emoji_table').on('click', '.delete', function (e) {
|
|
|
|
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({
|
|
|
|
url: '/json/realm/emoji/' + encodeURIComponent(btn.attr('data-emoji-name')),
|
|
|
|
error: function (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
|
|
|
},
|
|
|
|
success: function () {
|
2019-11-02 00:06:25 +01: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
|
|
|
|
2018-03-25 15:46:34 +02:00
|
|
|
$(".organization form.admin-emoji-form").off('submit').on('submit', function (e) {
|
2017-04-08 17:24:07 +02:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
2019-11-02 00:06:25 +01:00
|
|
|
const emoji_status = $('#admin-emoji-status');
|
2018-03-08 18:41:28 +01:00
|
|
|
$('#admin_emoji_submit').attr('disabled', true);
|
2019-11-02 00:06:25 +01:00
|
|
|
const emoji = {};
|
|
|
|
const formData = new FormData();
|
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
|
|
|
|
|
|
|
for (const obj of $(this).serializeArray()) {
|
2017-04-08 17:24:07 +02:00
|
|
|
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-02-08 01:53:49 +01:00
|
|
|
for (const [i, file] of Array.prototype.entries.call($('#emoji_file_input')[0].files)) {
|
2017-03-13 05:45:50 +01:00
|
|
|
formData.append('file-' + i, file);
|
2020-02-08 01:53:49 +01:00
|
|
|
}
|
2017-07-05 19:13:11 +02:00
|
|
|
channel.post({
|
2017-04-08 17:24:07 +02:00
|
|
|
url: "/json/realm/emoji/" + encodeURIComponent(emoji.name),
|
2017-03-13 05:45:50 +01:00
|
|
|
data: formData,
|
|
|
|
cache: false,
|
|
|
|
processData: false,
|
|
|
|
contentType: false,
|
2017-04-08 17:24:07 +02:00
|
|
|
success: function () {
|
|
|
|
$('#admin-emoji-status').hide();
|
|
|
|
ui_report.success(i18n.t("Custom emoji added!"), emoji_status);
|
|
|
|
$("form.admin-emoji-form input[type='text']").val("");
|
2018-03-08 18:41:28 +01:00
|
|
|
$('#admin_emoji_submit').removeAttr('disabled');
|
2017-03-13 05:45:50 +01:00
|
|
|
emoji_widget.clear();
|
2017-04-08 17:24:07 +02:00
|
|
|
},
|
|
|
|
error: function (xhr) {
|
|
|
|
$('#admin-emoji-status').hide();
|
2019-11-02 00:06:25 +01:00
|
|
|
const errors = JSON.parse(xhr.responseText).msg;
|
2017-04-08 17:24:07 +02:00
|
|
|
xhr.responseText = JSON.stringify({msg: errors});
|
2017-05-01 23:43:10 +02:00
|
|
|
ui_report.error(i18n.t("Failed"), xhr, emoji_status);
|
2018-03-08 18:41:28 +01:00
|
|
|
$('#admin_emoji_submit').removeAttr('disabled');
|
2017-04-08 17:24:07 +02:00
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2019-10-25 09:45:13 +02:00
|
|
|
window.settings_emoji = exports;
|