Skip to content
Snippets Groups Projects
Commit f0e776c2 authored by Marcelo Schmidt's avatar Marcelo Schmidt
Browse files

Merge pull request #1401 from RocketChat/channel-settings

Channel settings
parents 43e62c80 6c253c3c
No related branches found
No related tags found
No related merge requests found
Showing
with 284 additions and 9 deletions
......@@ -63,6 +63,7 @@ rocketchat:statistics
rocketchat:theme
rocketchat:tutum
rocketchat:webrtc
rocketchat:channel-settings
rocketchat:wordpress
#rocketchat:chatops
#rocketchat:hubot
......
......@@ -123,6 +123,7 @@ reload@1.1.4
retry@1.0.4
rocketchat:authorization@0.0.1
rocketchat:autolinker@0.0.1
rocketchat:channel-settings@0.0.1
rocketchat:colors@0.0.1
rocketchat:custom-oauth@1.0.0
rocketchat:emojione@0.0.1
......
......@@ -110,13 +110,7 @@ RocketChat.Notifications.onUser 'message', (msg) ->
Meteor.defer ->
RoomManager.updateMentionsMarksOfRoom typeName
# If room was renamed then close current room and send user to the new one
Tracker.nonreactive ->
if msg.t is 'r'
if Session.get('openedRoom') is msg.rid
type = if FlowRouter.current().route.name is 'channel' then 'c' else 'p'
RoomManager.close type + FlowRouter.getParam('name')
FlowRouter.go FlowRouter.current().route.name, name: msg.msg
RocketChat.callbacks.run 'streamMessage', msg
RocketChat.Notifications.onRoom openedRooms[typeName].rid, 'deleteMessage', onDeleteMessageStream
......
Meteor.startup ->
roomNameChangedCallback = (msg) ->
Tracker.nonreactive ->
if msg.t is 'r'
if Session.get('openedRoom') is msg.rid
type = if FlowRouter.current().route.name is 'channel' then 'c' else 'p'
RoomManager.close type + FlowRouter.getParam('name')
FlowRouter.go FlowRouter.current().route.name, name: msg.msg
return msg
RocketChat.callbacks.add 'streamMessage', roomNameChangedCallback, RocketChat.callbacks.priority.HIGH
......@@ -14,11 +14,14 @@ Template.message.helpers
return 'temp'
body: ->
return Template.instance().body
system: ->
if RocketChat.MessageTypes.isSystemMessage(this)
return 'system'
edited: ->
return Template.instance().wasEdited
editTime: ->
if Template.instance().wasEdited
return moment(@editedAt).format('LL hh:mma') #TODO profile pref for 12hr/24hr clock?
......@@ -91,6 +94,7 @@ Template.message.onCreated ->
message = RocketChat.callbacks.run 'renderMentions', msg
# console.log JSON.stringify message
return msg.html
msg.html = msg.msg
if _.trim(msg.html) isnt ''
msg.html = _.escapeHTML msg.html
......
......@@ -9,7 +9,7 @@ Template.videoCall.helpers
videoActive: ->
webrtc = WebRTC.getInstanceByRoomId(Session.get('openedRoom'))
overlay = @overlay?
if overlay isnt webrtc.overlayEnabled.get()
if overlay isnt webrtc?.overlayEnabled.get()
return false
return webrtc.localUrl.get()? or webrtc.remoteItems.get()?.length > 0
......
Meteor.startup ->
RocketChat.MessageTypes.registerType
id: 'room_changed_privacy'
system: true
message: 'room_changed_privacy'
data: (message) ->
return {
user_by: message.u?.username
room_type: message.msg
}
RocketChat.MessageTypes.registerType
id: 'room_changed_topic'
system: true
message: 'room_changed_topic'
data: (message) ->
return {
user_by: message.u?.username
room_topic: message.msg
}
Meteor.startup ->
RocketChat.callbacks.add 'enter-room', (subscription) ->
if RocketChat.authz.hasAtLeastOnePermission('edit-room', subscription?.rid)
RocketChat.TabBar.addButton
id: 'channel-settings'
i18nTitle: 'Channel_Settings'
icon: 'octicon octicon-gear'
template: 'channelSettings'
order: 0
, RocketChat.callbacks.priority.MEDIUM, 'enter-room-tabbar-channel-settings'
Meteor.startup ->
roomSettingsChangedCallback = (msg) ->
Tracker.nonreactive ->
if msg.t is 'room_changed_privacy'
if Session.get('openedRoom') is msg.rid
type = if FlowRouter.current().route.name is 'channel' then 'c' else 'p'
RoomManager.close type + FlowRouter.getParam('name')
subscription = ChatSubscription.findOne({ rid: msg.rid })
route = if subscription.t is 'c' then 'channel' else 'group'
FlowRouter.go route, name: subscription.name
return msg
RocketChat.callbacks.add 'streamMessage', roomSettingsChangedCallback, RocketChat.callbacks.priority.HIGH
.flex-tab {
.channel-settings {
margin-top: 60px;
padding: 20px;
form {
label {
}
}
.submit {
margin-top: 30px;
text-align: center;
}
}
}
Template.channelSettings.helpers
notDirect: ->
return ChatRoom.findOne(@rid)?.t isnt 'd'
roomType: ->
return ChatRoom.findOne(@rid)?.t
Template.channelSettings.events
'click .save': (e, t) ->
e.preventDefault()
settings =
roomType: t.$('input[name=roomType]:checked').val()
Meteor.call 'saveRoomSettings', t.data.rid, settings, (err, results) ->
return toastr.error err.reason if err
toastr.success TAPi18n.__ 'Settings_updated'
# switch room.t
# when 'c'
# FlowRouter.go 'channel', name: name
# when 'p'
# FlowRouter.go 'group', name: name
<template name="channelSettings">
<div class="control">
<div class="header">
<h2>{{_ "Room_Settings"}}</h2>
</div>
</div>
<div class="channel-settings scrollable">
<form>
<fieldset>
{{#if notDirect}}
<div class="input-line double-col">
<label>{{_ "Room_Type"}}</label>
<div>
<label><input type="radio" name="roomType" value="c" checked="{{$eq roomType 'c'}}" /> {{_ "Channel"}}</label>
<label><input type="radio" name="roomType" value="p" checked="{{$eq roomType 'p'}}" /> {{_ "Private_Group"}}</label>
</div>
</div>
{{/if}}
</fieldset>
<div class="submit">
<button class="button save"><i class="icon-send"></i><span>{{_ "Save_changes"}}</span></button>
</div>
</form>
</div>
</template>
{
"Channel": "Channel",
"Private_Group": "Private Group",
"Room_Type": "Room Type",
"Room_Settings": "Room Settings",
"room_changed_privacy": "Room type changed to: <em>__room_type__</em> by <em>__user_by__</em>",
"room_changed_topic": "Room topic changed to: <em>__room_topic__</em> by <em>__user_by__</em>"
}
Package.describe({
name: 'rocketchat:channel-settings',
version: '0.0.1',
summary: 'Channel Settings Panel',
git: ''
});
Package.onUse(function(api) {
api.versionsFrom('1.0');
api.use([
'coffeescript',
'templating',
'less@2.5.0',
'rocketchat:lib@0.0.1'
]);
api.addFiles([
'client/startup/messageTypes.coffee',
'client/startup/tabBar.coffee',
'client/startup/trackSettingsChange.coffee',
'client/views/channelSettings.html',
'client/views/channelSettings.coffee',
'client/stylesheets/channel-settings.less'
], 'client');
api.addFiles([
'server/functions/changeRoomType.coffee',
'server/methods/saveRoomSettings.coffee',
'server/models/Messages.coffee'
], 'server');
// TAPi18n
var _ = Npm.require('underscore');
var fs = Npm.require('fs');
tapi18nFiles = _.compact(_.map(fs.readdirSync('packages/rocketchat-channel-settings/i18n'), function(filename) {
if (fs.statSync('packages/rocketchat-channel-settings/i18n/' + filename).size > 16) {
return 'i18n/' + filename;
}
}));
api.use('tap:i18n@1.6.1');
api.imply('tap:i18n');
api.addFiles(tapi18nFiles);
});
Package.onTest(function(api) {
});
RocketChat.changeRoomType = (rid, roomType) ->
console.log '[function] RocketChat.changeRoomType'.green, rid, roomType
unless Match.test rid, String
throw new Meteor.Error 'invalid-rid'
if roomType not in ['c', 'p']
throw new Meteor.Error 'invalid-room-type'
return RocketChat.models.Rooms.setTypeById(rid, roomType) and RocketChat.models.Subscriptions.updateTypeByRoomId(rid, roomType)
# username = s.trim username
# if not user or not username
# return false
# if not /^[0-9a-zA-Z-_.]+$/.test username
# return false
# # User already has desired username, return
# if user.username is username
# return user
# # Check username availability
# unless RocketChat.checkUsernameAvailability username
# return false
# previousUsername = user.username
# # Username is available; if coming from old username, update all references
# if previousUsername
# RocketChat.models.Messages.updateAllUsernamesByUserId user._id, username
# RocketChat.models.Messages.findByMention(previousUsername).forEach (msg) ->
# updatedMsg = msg.msg.replace(new RegExp("@#{previousUsername}", "ig"), "@#{username}")
# RocketChat.models.Messages.updateUsernameAndMessageOfMentionByIdAndOldUsername msg._id, previousUsername, username, updatedMsg
# RocketChat.models.Rooms.replaceUsername previousUsername, username
# RocketChat.models.Rooms.replaceUsernameOfUserByUserId user._id, username
# RocketChat.models.Subscriptions.setUserUsernameByUserId user._id, username
# RocketChat.models.Subscriptions.setNameForDirectRoomsWithOldName previousUsername, username
# # Set new username
# Meteor.users.update { _id: user._id }, { $set: { username: username } }
# user.username = username
# return user
Meteor.methods
saveRoomSettings: (rid, settings) ->
console.log '[method] saveRoomSettings'.green, rid, settings
unless Match.test rid, String
throw new Meteor.Error 'invalid-rid'
unless Match.test settings, Match.ObjectIncluding { roomType: String }
throw new Meteor.Error 'invalid-settings'
unless RocketChat.authz.hasPermission(Meteor.userId(), 'edit-room', rid)
throw new Meteor.Error 503, 'Not authorized'
room = RocketChat.models.Rooms.findOneById rid
if room?
if settings.roomType isnt room.t
RocketChat.changeRoomType(rid, settings.roomType)
if settings.roomType is 'c'
message = TAPi18n.__('Channel')
else
message = TAPi18n.__('Private_Group')
RocketChat.models.Messages.createRoomSettingsChangedWithTypeRoomIdMessageAndUser 'room_changed_privacy', rid, message, Meteor.user()
return true
RocketChat.models.Messages.createRoomSettingsChangedWithTypeRoomIdMessageAndUser = (type, roomId, message, user, extraData) ->
return @createWithTypeRoomIdMessageAndUser type, roomId, message, user, extraData
......@@ -62,4 +62,4 @@ currentTracker = undefined
if ChatSubscription.findOne({rid: room._id})?.open is false
Meteor.call 'openRoom', room._id
RocketChat.callbacks.run 'enter-room'
RocketChat.callbacks.run 'enter-room', ChatSubscription.findOne({rid: room._id})
......@@ -290,6 +290,16 @@ RocketChat.models.Rooms = new class extends RocketChat.models._Base
return @update query, update
setTypeById: (_id, type) ->
query =
_id: _id
update =
$set:
t: type
return @update query, update
# INSERT
createWithTypeNameUserAndUsernames: (type, name, user, usernames, extraData) ->
......
......@@ -194,6 +194,16 @@ RocketChat.models.Subscriptions = new class extends RocketChat.models._Base
return @update query, update, { multi: true }
updateTypeByRoomId: (roomId, type) ->
query =
rid: roomId
update =
$set:
t: type
return @update query, update, { multi: true }
# INSERT
createWithRoomAndUser: (room, user, extraData) ->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment