Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ban #196

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Ban #196

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions core/client/ui/levels.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,15 @@ const levelQueryFilters = ignoredLevelId => ({
});

const askLoadLevel = (levelId, incrementVisit = false) => {
const bannedUserIds = Levels.findOne({ _id: levelId }).bannedUserIds || [];

if (Meteor.user().profile.levelId === levelId) return;

if (bannedUserIds.includes(Meteor.userId())) {
lp.notif.error('You have been banned from this level');
return;
}

if (incrementVisit) Meteor.call('increaseLevelVisits', levelId);

if (window.self !== window.top) {
Expand Down
20 changes: 16 additions & 4 deletions core/lib/misc.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,17 @@ const getChannelType = channelId => {
}
};

const kickUser = userId => {
// if (!this.userId) throw new Meteor.Error('missing-user', 'A valid user is required');
check(userId, Match.Id);
if (!Meteor.settings.defaultKickLevelId) throw new Meteor.Error('missing-levelId', 'Missing configuration for defaultKickLevelId');
const level = Levels.findOne({ _id: Meteor.settings.defaultKickLevelId });
if (!level) throw new Meteor.Error('missing-levelId', 'Level in defaultKickLevelId does not exists');
log('kickUser', { kicker: Meteor.userId(), kicked: userId });

Meteor.users.update({ _id: userId }, { $set: { 'profile.levelId': Meteor.settings.defaultKickLevelId } });
};

export {
canAccessZone,
canEditActiveLevel,
Expand All @@ -316,16 +327,17 @@ export {
completeUserProfile,
currentLevel,
fileOnBeforeUpload,
generateRandomCharacterSkin,
generateGuestSkin,
generateRandomCharacterSkin,
getChannelType,
getSpawnLevel,
guestAllowed,
getChannelType,
isLevelOwner,
kickUser,
levelSpawnPosition,
permissionTypes,
randomFloatInRange,
randomInRange,
subscribedUsersToEntity,
teleportUserInLevel,
randomInRange,
randomFloatInRange,
};
22 changes: 13 additions & 9 deletions core/modules/report/client/report.hbs.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,23 @@ <h2 class="h2">{{ title }}</h2>
<hr class="separator" />
</div>
<div class="report">
<select name="reason-select"
id="reason-select"
class="js-report-reason-select select">
<select name="reason-select" id="reason-select" class="js-report-reason-select select">
{{#each reportAllReasons }}
<option value="{{ this }}">
{{ this }}
</option>
<option value="{{ this }}">
{{ this }}
</option>
{{/each }}
</select>
<form class="js-console-form">
<textarea class="textarea js-command-input" name="js-command-input" placeholder="Explain here" autocomplete="off"></textarea>
<button type="button" class="button js-button-submit">Send</button>
<textarea class="textarea js-command-input" name="js-command-input" placeholder="Explain here"
autocomplete="off"></textarea>
<div class="buttons">
{{#if isAdmin}}
<button type="button" class="button js-ban-submit">Report & Ban</button>
{{/if}}
<button type="button" class="button js-report-submit">Report</button>
</div>
</form>
</div>
{{/modal }}
{{/modal }}
</template>
37 changes: 28 additions & 9 deletions core/modules/report/client/report.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ window.addEventListener('load', () => {
window.addEventListener(eventTypes.onMenuOptionSelected, onMenuOptionSelected);
});

function buildMessage(text, level, reason, reported, messageId) {
function buildMessage(text, level, reason, reported, messageId, isBanned) {
let messageText = '';
if (messageId) {
const message = Messages.findOne(messageId);
Expand All @@ -29,6 +29,8 @@ Level: ${level}

Justification: ${text}

Banned: ${isBanned}

Reason: ${reason}
${messageText}
Reported: ${reported._id} - ${reported.profile.name}`;
Expand All @@ -45,12 +47,14 @@ const sendReport = (channel, text) => {
return messageId;
};

const onSubmit = (reason, reported, messageId) => {
if (reported._id === Meteor.userId()) {
const onSubmit = (reason, reported, messageId, isBanned = false) => {
const userId = Meteor.userId();

if (reported._id === userId) {
lp.notif.error('You can\'t report yourself');
return;
}
const isAdmin = Meteor.users.findOne(Meteor.userId()).roles?.admin;
const isAdmin = Meteor.users.findOne(userId).roles?.admin;

const text = document.querySelector('.report .js-command-input').value;
const currentLevel = Meteor.user().profile.levelId;
Expand All @@ -64,9 +68,9 @@ const onSubmit = (reason, reported, messageId) => {
}
let admins = Meteor.users.find({ roles: { admin: true } }).fetch();
if (isAdmin) {
admins = admins.filter(admin => admin._id !== Meteor.userId());
admins = admins.filter(admin => admin._id !== userId);
}
if (!admins.length) {
if (!isBanned && !admins.length) {
// Quiting even if the user is an admin because we don't want to create a conversation with himself
lp.notif.error('No admins found');
return;
Expand All @@ -76,11 +80,19 @@ const onSubmit = (reason, reported, messageId) => {
admins = adminsLevel;
}
const level = Levels.findOne(currentLevel).name;
const message = buildMessage(text, level, reason, reported, messageId);
const channel = [...admins.map(admin => admin._id), Meteor.userId()].sort().join(';');
const message = buildMessage(text, level, reason, reported, messageId, isBanned);
const channel = [...admins.map(admin => admin._id), userId].sort().join(';');

sendReport(channel, message);

if (isBanned) {
Meteor.call('banUser', reported._id, currentLevel, err => {
if (err) { lp.notif.error(err); return; }

lp.notif.success('Successfully Banned!');
});
}

closeModal('report');
};

Expand All @@ -97,16 +109,23 @@ Template.report.helpers({
const reportAllReasons = ['Non-specified', 'Spam', 'Abusive chat', 'Cheating', 'Offensive name', 'Other'];
return reportAllReasons;
},
isAdmin() { return Meteor.user().roles?.admin;},
});

Template.report.events({
'change .js-report-reason-select'(event) {
Template.instance().reason.set(event.target.value);
},
'click .js-button-submit'(event) {
'click .js-report-submit'(event) {
event.preventDefault();
event.stopPropagation();
const template = Template.instance();
lp.notif.confirm('Report user', `Do you really want to report this ${template.data.messageId ? 'message' : 'user'}?`, () => onSubmit(template.reason.get(), Meteor.users.findOne(template.data.userId), template.data.messageId));
},
'click .js-ban-submit'(event) {
event.preventDefault();
event.stopPropagation();
const template = Template.instance();
lp.notif.confirm('Ban user', 'Do you really want to ban this user', () => onSubmit(template.reason.get(), Meteor.users.findOne(template.data.userId), template.data.messageId, true));
},
});
20 changes: 18 additions & 2 deletions core/modules/report/client/report.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import "../../../client/_variables";

.report {
width: 90%;
height: 80%;
Expand All @@ -10,8 +12,22 @@
width: 100%;
height: 80%;
}
button {
margin-bottom: 0px;

.buttons {
display: flex;
gap: 10px;

.js-ban-submit {
background-color: $new-red;

&:hover {
background-color: lighten($new-red, 5%);
}
}

button {
margin-bottom: 0px;
}
}
}
}
2 changes: 1 addition & 1 deletion core/server/levels.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ deleteLevel = levelId => {
Meteor.publish('levels', function () {
if (!this.userId) return undefined;

return Levels.find({ }, { fields: { name: 1, hide: 1, visit: 1, createdBy: 1, template: 1 } });
return Levels.find({ }, { fields: { name: 1, hide: 1, visit: 1, createdBy: 1, template: 1, bannedUserIds: 1 } });
});

Meteor.publish('levelTemplates', function () {
Expand Down
16 changes: 10 additions & 6 deletions core/server/users.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { completeUserProfile, getSpawnLevel, levelSpawnPosition, teleportUserInLevel } from '../lib/misc';
import { completeUserProfile, getSpawnLevel, kickUser, levelSpawnPosition, teleportUserInLevel } from '../lib/misc';

const mainFields = { options: 1, profile: 1, roles: 1, status: { idle: 1, online: 1 }, beta: 1, guildId: 1 };

Expand Down Expand Up @@ -107,14 +107,18 @@ Meteor.methods({
Notifications.update({ userId: this.userId }, { $set: { read: true } }, { multi: true });
},
kickUser(userId) {
kickUser(userId)
},
banUser(userId, levelId) {
if (!this.userId) throw new Meteor.Error('missing-user', 'A valid user is required');
check(userId, Match.Id);
if (!Meteor.settings.defaultKickLevelId) throw new Meteor.Error('missing-levelId', 'Missing configuration for defaultKickLevelId');
const level = Levels.findOne({ _id: Meteor.settings.defaultKickLevelId });
if (!level) throw new Meteor.Error('missing-levelId', 'Level in defaultKickLevelId does not exists');
log('kickUser', { kicker: Meteor.userId(), kicked: userId });
const level = Levels.findOne({ _id: levelId });
if (!level) throw new Meteor.Error('missing-levelId', 'Level is required');
log('banUser', { banner: Meteor.userId(), banned: userId });


Meteor.users.update({ _id: userId }, { $set: { 'profile.levelId': Meteor.settings.defaultKickLevelId } });
kickUser(userId);
Levels.update({ _id: levelId, bannedUserIds: { $ne: userId } }, { $push: { bannedUserIds: userId } });
},
muteFromZone(zoneId) {
if (!this.userId) return;
Expand Down