mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-15 21:57:22 +01:00
* initial commit * update logic to display flagged challenges properly to users and admins * add report button to pages 'My Challenges' and 'Discover Challenges' * allow mods to view flagged messages on challengeDetail view * update showing flagged challenges for group challenges * update showing flagged challenges for a specific challenge * disallow closing a flagged challenge * update notes to reflect apiParams properly * fix css spacing * update challenge en locales * fix spacing * update title of closeChallengeModal * let user know flagged challenges cannot be cloned * fix linting errors * ensure flagged challenges cannot be declared with a winner and cloned via API * define a non user challenge properly * fix logic to check for a nonParticipant and nonLeader user when grabbing flagged challenges * fix linting of max character of 100 / line * remove reporting on 'my challenges' and 'discover challenges' * WIP(challenges): disable clone button and add notes to new functions * WIP(challenges): smol changes * WIP(challenges): clone button only disabled for admin and flagged user; other users can still clone but the flag goes along with the clone * WIP(challenges): stop flags carrying over on cloned challenges * WIP(challenges): typo fixing, undoing a smol change * fix(challenges): improved query logic for flags * WIP(challenges): more smol changes * fix(challenges): refactor queries * fix(challenges): correct My Challenges tab logic * WIP(challenges): fix clone button state * WIP(challenges): really fixed clone button & clear flags from clones * WIP(challenge): implement new design for reporting modal * WIP(challenge): making things pretty * WIP(challenge): conquering the close button * WIP(challenge): fixin some spacing * WIP(challenge): smol fix * WIP(challenge): making sure the button is actually disabled * WIP(challenge): fix blockquote css * fix(tests): no private guilds * fix(lint): curlies etc * fix(test): moderator permission * fix(lint): sure man whatever * fix(lint): bad vim no tabby * fix(test): permissions not contrib lol * fix(challenges): add icon and fix leaky CSS * fix(challenge): correct clone button behavior --------- Co-authored-by: Julius Jung <me@matchajune.io> Co-authored-by: SabreCat <sabe@habitica.com> Co-authored-by: Sabe Jones <sabrecat@gmail.com>
384 lines
9.8 KiB
JavaScript
384 lines
9.8 KiB
JavaScript
/* eslint-disable camelcase */
|
|
import { IncomingWebhook } from '@slack/webhook';
|
|
import nconf from 'nconf';
|
|
import moment from 'moment';
|
|
import logger from './logger';
|
|
import { getCurrentEvent } from './worldState'; // eslint-disable-line import/no-cycle
|
|
import { TAVERN_ID } from '../models/group'; // eslint-disable-line import/no-cycle
|
|
|
|
const SLACK_FLAGGING_URL = nconf.get('SLACK_FLAGGING_URL');
|
|
const SLACK_FLAGGING_FOOTER_LINK = nconf.get('SLACK_FLAGGING_FOOTER_LINK');
|
|
const SLACK_SUBSCRIPTIONS_URL = nconf.get('SLACK_SUBSCRIPTIONS_URL');
|
|
const BASE_URL = nconf.get('BASE_URL');
|
|
const IS_PRODUCTION = nconf.get('IS_PROD');
|
|
const IS_TEST = nconf.get('IS_TEST');
|
|
|
|
const SKIP_FLAG_METHODS = (IS_PRODUCTION || IS_TEST) && !SLACK_FLAGGING_URL;
|
|
const SKIP_SUB_METHOD = (IS_PRODUCTION || IS_TEST) && !SLACK_SUBSCRIPTIONS_URL;
|
|
|
|
let flagSlack;
|
|
let subscriptionSlack;
|
|
|
|
try {
|
|
if (IS_TEST || IS_PRODUCTION) {
|
|
flagSlack = new IncomingWebhook(SLACK_FLAGGING_URL);
|
|
subscriptionSlack = new IncomingWebhook(SLACK_SUBSCRIPTIONS_URL);
|
|
} else {
|
|
subscriptionSlack = {
|
|
// async so that it works like the original Slack send method
|
|
async send (data) {
|
|
logger.info('Data sent to slack', data);
|
|
},
|
|
};
|
|
flagSlack = subscriptionSlack;
|
|
}
|
|
} catch (err) {
|
|
logger.error(err, 'Error setting up Slack.');
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param formatObj.name userName
|
|
* @param formatObj.displayName displayName
|
|
* @param formatObj.email email
|
|
* @param formatObj.uuid uuid
|
|
* @returns {string}
|
|
*/
|
|
function formatUser (formatObj) {
|
|
return `@${formatObj.name} ${formatObj.displayName} (${formatObj.email}; ${formatObj.uuid})`;
|
|
}
|
|
|
|
function sendFlagNotification ({
|
|
authorEmail,
|
|
flagger,
|
|
group,
|
|
message,
|
|
userComment,
|
|
automatedComment,
|
|
}) {
|
|
if (SKIP_FLAG_METHODS) {
|
|
return;
|
|
}
|
|
let titleLink;
|
|
let authorName;
|
|
let title = `Flag in ${group.name}`;
|
|
let text = `${flagger.profile.name} (${flagger.id}; language: ${flagger.preferences.language}) flagged a group message`;
|
|
let footer = `<${SLACK_FLAGGING_FOOTER_LINK}?groupId=${group.id}&chatId=${message.id}|Flag this message.>`;
|
|
|
|
if (userComment) {
|
|
text += ` and commented: ${userComment}`;
|
|
}
|
|
if (automatedComment) {
|
|
footer += ` ${automatedComment}`;
|
|
}
|
|
|
|
if (group.id === TAVERN_ID) {
|
|
titleLink = `${BASE_URL}/groups/tavern`;
|
|
} else if (group.privacy === 'public') {
|
|
titleLink = `${BASE_URL}/groups/guild/${group.id}`;
|
|
} else {
|
|
title += ` - (${group.privacy} ${group.type})`;
|
|
}
|
|
|
|
if (!message.user && message.uuid === 'system') {
|
|
authorName = 'System Message';
|
|
} else {
|
|
authorName = formatUser({
|
|
name: message.username,
|
|
displayName: message.user,
|
|
email: authorEmail,
|
|
uuid: message.uuid,
|
|
});
|
|
}
|
|
|
|
const timestamp = `${moment(message.timestamp).utc().format('YYYY-MM-DD HH:mm')} UTC`;
|
|
|
|
flagSlack
|
|
.send({
|
|
text,
|
|
attachments: [{
|
|
fallback: 'Flag Message',
|
|
color: 'danger',
|
|
author_name: `${authorName}\n${timestamp}`,
|
|
title,
|
|
title_link: titleLink,
|
|
text: message.text,
|
|
footer,
|
|
mrkdwn_in: [
|
|
'text',
|
|
],
|
|
}],
|
|
})
|
|
.catch(err => logger.error(err, 'Error while sending flag data to Slack.'));
|
|
}
|
|
|
|
function sendInboxFlagNotification ({
|
|
messageUserEmail,
|
|
flagger,
|
|
message,
|
|
userComment,
|
|
}) {
|
|
if (SKIP_FLAG_METHODS) {
|
|
return;
|
|
}
|
|
const titleLink = '';
|
|
const title = `Flag in ${flagger.profile.name}'s Inbox`;
|
|
let text = `${flagger.profile.name} (${flagger.id}; language: ${flagger.preferences.language}) flagged a PM`;
|
|
const footer = '';
|
|
|
|
if (userComment) {
|
|
text += ` and commented: ${userComment}`;
|
|
}
|
|
|
|
const messageText = message.text;
|
|
let sender = '';
|
|
let recipient = '';
|
|
|
|
const flaggerFormat = formatUser({
|
|
displayName: flagger.profile.name,
|
|
name: flagger.auth.local.username,
|
|
email: flagger.auth.local.email,
|
|
uuid: flagger._id,
|
|
});
|
|
const messageUserFormat = formatUser({
|
|
displayName: message.user,
|
|
name: message.username,
|
|
email: messageUserEmail,
|
|
uuid: message.uuid,
|
|
});
|
|
|
|
if (message.sent) {
|
|
sender = flaggerFormat;
|
|
recipient = messageUserFormat;
|
|
} else {
|
|
sender = messageUserFormat;
|
|
recipient = flaggerFormat;
|
|
}
|
|
|
|
const authorName = `${sender} wrote this message to ${recipient}.`;
|
|
|
|
flagSlack
|
|
.send({
|
|
text,
|
|
attachments: [{
|
|
fallback: 'Flag Message',
|
|
color: 'danger',
|
|
author_name: authorName,
|
|
title,
|
|
title_link: titleLink,
|
|
text: messageText,
|
|
footer,
|
|
mrkdwn_in: [
|
|
'text',
|
|
],
|
|
}],
|
|
})
|
|
.catch(err => logger.error(err, 'Error while sending flag data to Slack.'));
|
|
}
|
|
|
|
function sendChallengeFlagNotification ({
|
|
flagger,
|
|
challenge,
|
|
userComment,
|
|
}) {
|
|
if (SKIP_FLAG_METHODS) {
|
|
return;
|
|
}
|
|
const titleLink = `${BASE_URL}/challenges/${challenge.id}`;
|
|
const title = `Flag in challenge "${challenge.name}"`;
|
|
let text = `${flagger.profile.name} (${flagger.id}; language: ${flagger.preferences.language}) flagged a challenge`;
|
|
const footer = '';
|
|
|
|
if (userComment) {
|
|
text += ` and commented: ${userComment}`;
|
|
}
|
|
|
|
const challengeText = challenge.summary;
|
|
|
|
flagSlack.send({
|
|
text,
|
|
attachments: [{
|
|
fallback: 'Flag Message',
|
|
color: 'danger',
|
|
title,
|
|
title_link: titleLink,
|
|
text: challengeText,
|
|
footer,
|
|
mrkdwn_in: [
|
|
'text',
|
|
],
|
|
}],
|
|
});
|
|
}
|
|
|
|
function sendProfileFlagNotification ({
|
|
reporter,
|
|
flaggedUser,
|
|
userComment,
|
|
source,
|
|
}) {
|
|
const title = 'User Profile Report';
|
|
const titleLink = `${BASE_URL}/profile/${flaggedUser._id}`;
|
|
let text = `@${reporter.auth.local.username} (${reporter._id}; language: ${reporter.preferences.language}) flagged @${flaggedUser.auth.local.username}'s profile from ${source}`;
|
|
if (userComment) {
|
|
text += ` and commented: ${userComment}`;
|
|
}
|
|
let profileData = `Display Name: ${flaggedUser.profile.name}`;
|
|
if (flaggedUser.profile.imageUrl) {
|
|
profileData += `\n\nImage URL: ${flaggedUser.profile.imageUrl}`;
|
|
}
|
|
if (flaggedUser.profile.blurb) {
|
|
profileData += `\n\nAbout: ${flaggedUser.profile.blurb}`;
|
|
}
|
|
|
|
flagSlack
|
|
.send({
|
|
text,
|
|
attachments: [{
|
|
fallback: 'Flag Profile',
|
|
color: 'danger',
|
|
title,
|
|
title_link: titleLink,
|
|
text: profileData,
|
|
mrkdwn_in: [
|
|
'text',
|
|
],
|
|
}],
|
|
})
|
|
.catch(err => logger.error(err, 'Error while sending flag data to Slack.'));
|
|
}
|
|
|
|
function sendSubscriptionNotification ({
|
|
buyer,
|
|
recipient,
|
|
paymentMethod,
|
|
months,
|
|
groupId,
|
|
autoRenews,
|
|
}) {
|
|
if (SKIP_SUB_METHOD) {
|
|
return;
|
|
}
|
|
let text;
|
|
const timestamp = new Date();
|
|
if (recipient.id) {
|
|
const currentEvent = getCurrentEvent();
|
|
const promoString = currentEvent && currentEvent.promo ? ' and got a promo' : '';
|
|
text = `${buyer.name} ${buyer.id} ${buyer.email} bought a ${months}-month gift subscription for ${recipient.name} ${recipient.id} ${recipient.email}${promoString} using ${paymentMethod} on ${timestamp}`;
|
|
} else if (groupId) {
|
|
text = `${buyer.name} ${buyer.id} ${buyer.email} bought a 1-month recurring group-plan for ${groupId} using ${paymentMethod} on ${timestamp}`;
|
|
} else if (autoRenews) {
|
|
text = `${buyer.name} ${buyer.id} ${buyer.email} bought a ${months}-month recurring subscription using ${paymentMethod} on ${timestamp}`;
|
|
} else {
|
|
text = `${buyer.name} ${buyer.id} ${buyer.email} bought a ${months}-month non-recurring subscription using ${paymentMethod} on ${timestamp}`;
|
|
}
|
|
|
|
subscriptionSlack
|
|
.send({
|
|
text,
|
|
})
|
|
.catch(err => logger.error(err, 'Error while sending subscription data to Slack.'));
|
|
}
|
|
|
|
function sendShadowMutedPostNotification ({
|
|
authorEmail,
|
|
author,
|
|
group,
|
|
message,
|
|
}) {
|
|
if (SKIP_FLAG_METHODS) {
|
|
return;
|
|
}
|
|
const title = `Shadow-Muted Post in ${group.name}`;
|
|
const text = `@${author.auth.local.username} / ${author.profile.name} posted while shadow-muted`;
|
|
|
|
let titleLink;
|
|
if (group.id === TAVERN_ID) {
|
|
titleLink = `${BASE_URL}/groups/tavern`;
|
|
} else {
|
|
titleLink = `${BASE_URL}/groups/guild/${group.id}`;
|
|
}
|
|
|
|
const authorName = formatUser({
|
|
name: author.auth.local.username,
|
|
displayName: author.profile.name,
|
|
email: authorEmail,
|
|
uuid: author.id,
|
|
});
|
|
|
|
flagSlack
|
|
.send({
|
|
text,
|
|
attachments: [{
|
|
fallback: 'Shadow-Muted Message',
|
|
color: 'danger',
|
|
author_name: authorName,
|
|
title,
|
|
title_link: titleLink,
|
|
text: message,
|
|
mrkdwn_in: [
|
|
'text',
|
|
],
|
|
}],
|
|
})
|
|
.catch(err => logger.error(err, 'Error while sending flag data to Slack.'));
|
|
}
|
|
|
|
function sendSlurNotification ({
|
|
authorEmail,
|
|
author,
|
|
group,
|
|
message,
|
|
}) {
|
|
if (SKIP_FLAG_METHODS) {
|
|
return;
|
|
}
|
|
const text = `${author.profile.name} (${author._id}) tried to post a slur`;
|
|
|
|
let titleLink;
|
|
let title = `Slur in ${group.name}`;
|
|
|
|
if (group.id === TAVERN_ID) {
|
|
titleLink = `${BASE_URL}/groups/tavern`;
|
|
} else if (group.privacy === 'public') {
|
|
titleLink = `${BASE_URL}/groups/guild/${group.id}`;
|
|
} else {
|
|
title += ` - (${group.privacy} ${group.type})`;
|
|
}
|
|
|
|
const authorName = formatUser({
|
|
name: author.auth.local.username,
|
|
displayName: author.profile.name,
|
|
email: authorEmail,
|
|
uuid: author.id,
|
|
});
|
|
|
|
flagSlack
|
|
.send({
|
|
text,
|
|
attachments: [{
|
|
fallback: 'Slur Message',
|
|
color: 'danger',
|
|
author_name: authorName,
|
|
title,
|
|
title_link: titleLink,
|
|
text: message,
|
|
mrkdwn_in: [
|
|
'text',
|
|
],
|
|
}],
|
|
})
|
|
.catch(err => logger.error(err, 'Error while sending flag data to Slack.'));
|
|
}
|
|
|
|
export {
|
|
sendFlagNotification,
|
|
sendInboxFlagNotification,
|
|
sendChallengeFlagNotification,
|
|
sendProfileFlagNotification,
|
|
sendSubscriptionNotification,
|
|
sendShadowMutedPostNotification,
|
|
sendSlurNotification,
|
|
formatUser,
|
|
};
|