Merge remote-tracking branch 'origin/master' into advanced-permissions-phase-2
Этот коммит содержится в:
@@ -27,6 +27,7 @@ func (api *API) InitChannel() {
|
|||||||
api.BaseRoutes.Channel.Handle("", api.ApiSessionRequired(getChannel)).Methods("GET")
|
api.BaseRoutes.Channel.Handle("", api.ApiSessionRequired(getChannel)).Methods("GET")
|
||||||
api.BaseRoutes.Channel.Handle("", api.ApiSessionRequired(updateChannel)).Methods("PUT")
|
api.BaseRoutes.Channel.Handle("", api.ApiSessionRequired(updateChannel)).Methods("PUT")
|
||||||
api.BaseRoutes.Channel.Handle("/patch", api.ApiSessionRequired(patchChannel)).Methods("PUT")
|
api.BaseRoutes.Channel.Handle("/patch", api.ApiSessionRequired(patchChannel)).Methods("PUT")
|
||||||
|
api.BaseRoutes.Channel.Handle("/convert", api.ApiSessionRequired(convertChannelToPrivate)).Methods("POST")
|
||||||
api.BaseRoutes.Channel.Handle("/restore", api.ApiSessionRequired(restoreChannel)).Methods("POST")
|
api.BaseRoutes.Channel.Handle("/restore", api.ApiSessionRequired(restoreChannel)).Methods("POST")
|
||||||
api.BaseRoutes.Channel.Handle("", api.ApiSessionRequired(deleteChannel)).Methods("DELETE")
|
api.BaseRoutes.Channel.Handle("", api.ApiSessionRequired(deleteChannel)).Methods("DELETE")
|
||||||
api.BaseRoutes.Channel.Handle("/stats", api.ApiSessionRequired(getChannelStats)).Methods("GET")
|
api.BaseRoutes.Channel.Handle("/stats", api.ApiSessionRequired(getChannelStats)).Methods("GET")
|
||||||
@@ -119,7 +120,6 @@ func updateChannel(c *Context, w http.ResponseWriter, r *http.Request) {
|
|||||||
oldChannel.Purpose = channel.Purpose
|
oldChannel.Purpose = channel.Purpose
|
||||||
|
|
||||||
oldChannelDisplayName := oldChannel.DisplayName
|
oldChannelDisplayName := oldChannel.DisplayName
|
||||||
oldChannelType := oldChannel.Type
|
|
||||||
|
|
||||||
if len(channel.DisplayName) > 0 {
|
if len(channel.DisplayName) > 0 {
|
||||||
oldChannel.DisplayName = channel.DisplayName
|
oldChannel.DisplayName = channel.DisplayName
|
||||||
@@ -143,17 +143,51 @@ func updateChannel(c *Context, w http.ResponseWriter, r *http.Request) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if oldChannelType == model.CHANNEL_OPEN && channel.Type == model.CHANNEL_PRIVATE {
|
|
||||||
if err := c.App.PostConvertChannelToPrivate(c.Session.UserId, channel); err != nil {
|
|
||||||
l4g.Error(err.Error())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
c.LogAudit("name=" + channel.Name)
|
c.LogAudit("name=" + channel.Name)
|
||||||
w.Write([]byte(oldChannel.ToJson()))
|
w.Write([]byte(oldChannel.ToJson()))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func convertChannelToPrivate(c *Context, w http.ResponseWriter, r *http.Request) {
|
||||||
|
c.RequireChannelId()
|
||||||
|
if c.Err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if !c.App.SessionHasPermissionTo(c.Session, model.PERMISSION_MANAGE_SYSTEM) {
|
||||||
|
c.SetPermissionError(model.PERMISSION_MANAGE_SYSTEM)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
oldPublicChannel, err := c.App.GetChannel(c.Params.ChannelId)
|
||||||
|
if err != nil {
|
||||||
|
c.Err = err
|
||||||
|
return
|
||||||
|
} else if oldPublicChannel.Type == model.CHANNEL_PRIVATE {
|
||||||
|
c.Err = model.NewAppError("convertChannelToPrivate", "api.channel.convert_channel_to_private.private_channel_error", nil, "", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
} else if oldPublicChannel.Name == model.DEFAULT_CHANNEL {
|
||||||
|
c.Err = model.NewAppError("convertChannelToPrivate", "api.channel.convert_channel_to_private.default_channel_error", nil, "", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
var user *model.User
|
||||||
|
if user, err = c.App.GetUser(c.Session.UserId); err != nil {
|
||||||
|
c.Err = err
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
oldPublicChannel.Type = model.CHANNEL_PRIVATE
|
||||||
|
|
||||||
|
if rchannel, err := c.App.UpdateChannelPrivacy(oldPublicChannel, user); err != nil {
|
||||||
|
c.Err = err
|
||||||
|
return
|
||||||
|
} else {
|
||||||
|
c.LogAudit("name=" + rchannel.Name)
|
||||||
|
w.Write([]byte(rchannel.ToJson()))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func patchChannel(c *Context, w http.ResponseWriter, r *http.Request) {
|
func patchChannel(c *Context, w http.ResponseWriter, r *http.Request) {
|
||||||
c.RequireChannelId()
|
c.RequireChannelId()
|
||||||
if c.Err != nil {
|
if c.Err != nil {
|
||||||
|
|||||||
@@ -897,6 +897,46 @@ func TestDeleteChannel(t *testing.T) {
|
|||||||
CheckForbiddenStatus(t, resp)
|
CheckForbiddenStatus(t, resp)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestConvertChannelToPrivate(t *testing.T) {
|
||||||
|
th := Setup().InitBasic().InitSystemAdmin()
|
||||||
|
defer th.TearDown()
|
||||||
|
Client := th.Client
|
||||||
|
|
||||||
|
defaultChannel, _ := th.App.GetChannelByName(model.DEFAULT_CHANNEL, th.BasicTeam.Id)
|
||||||
|
_, resp := Client.ConvertChannelToPrivate(defaultChannel.Id)
|
||||||
|
CheckForbiddenStatus(t, resp)
|
||||||
|
|
||||||
|
privateChannel := th.CreatePrivateChannel()
|
||||||
|
_, resp = Client.ConvertChannelToPrivate(privateChannel.Id)
|
||||||
|
CheckForbiddenStatus(t, resp)
|
||||||
|
|
||||||
|
publicChannel := th.CreatePublicChannel()
|
||||||
|
_, resp = Client.ConvertChannelToPrivate(publicChannel.Id)
|
||||||
|
CheckForbiddenStatus(t, resp)
|
||||||
|
|
||||||
|
th.LoginTeamAdmin()
|
||||||
|
_, resp = Client.ConvertChannelToPrivate(publicChannel.Id)
|
||||||
|
CheckForbiddenStatus(t, resp)
|
||||||
|
|
||||||
|
rchannel, resp := th.SystemAdminClient.ConvertChannelToPrivate(privateChannel.Id)
|
||||||
|
CheckBadRequestStatus(t, resp)
|
||||||
|
if rchannel != nil {
|
||||||
|
t.Fatal("should not return a channel")
|
||||||
|
}
|
||||||
|
|
||||||
|
rchannel, resp = th.SystemAdminClient.ConvertChannelToPrivate(defaultChannel.Id)
|
||||||
|
CheckBadRequestStatus(t, resp)
|
||||||
|
if rchannel != nil {
|
||||||
|
t.Fatal("should not return a channel")
|
||||||
|
}
|
||||||
|
|
||||||
|
rchannel, resp = th.SystemAdminClient.ConvertChannelToPrivate(publicChannel.Id)
|
||||||
|
CheckOKStatus(t, resp)
|
||||||
|
if rchannel.Type != model.CHANNEL_PRIVATE {
|
||||||
|
t.Fatal("channel should be converted from public to private")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestRestoreChannel(t *testing.T) {
|
func TestRestoreChannel(t *testing.T) {
|
||||||
th := Setup().InitBasic().InitSystemAdmin()
|
th := Setup().InitBasic().InitSystemAdmin()
|
||||||
defer th.TearDown()
|
defer th.TearDown()
|
||||||
|
|||||||
@@ -881,34 +881,6 @@ func (a *App) PostUpdateChannelDisplayNameMessage(userId string, channel *model.
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *App) PostConvertChannelToPrivate(userId string, channel *model.Channel) *model.AppError {
|
|
||||||
uc := a.Srv.Store.User().Get(userId)
|
|
||||||
|
|
||||||
if uresult := <-uc; uresult.Err != nil {
|
|
||||||
return model.NewAppError("PostConvertChannelToPrivate", "api.channel.post_convert_channel_to_private.retrieve_user.error", nil, uresult.Err.Error(), http.StatusBadRequest)
|
|
||||||
} else {
|
|
||||||
user := uresult.Data.(*model.User)
|
|
||||||
|
|
||||||
message := fmt.Sprintf(utils.T("api.channel.post_convert_channel_to_private.updated_from"), user.Username)
|
|
||||||
|
|
||||||
post := &model.Post{
|
|
||||||
ChannelId: channel.Id,
|
|
||||||
Message: message,
|
|
||||||
Type: model.POST_CONVERT_CHANNEL,
|
|
||||||
UserId: userId,
|
|
||||||
Props: model.StringInterface{
|
|
||||||
"username": user.Username,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
if _, err := a.CreatePost(post, channel, false); err != nil {
|
|
||||||
return model.NewAppError("PostConvertChannelToPrivate", "api.channel.post_convert_channel_to_private.create_post.error", nil, err.Error(), http.StatusInternalServerError)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a *App) GetChannel(channelId string) (*model.Channel, *model.AppError) {
|
func (a *App) GetChannel(channelId string) (*model.Channel, *model.AppError) {
|
||||||
if result := <-a.Srv.Store.Channel().Get(channelId, true); result.Err != nil && result.Err.Id == "store.sql_channel.get.existing.app_error" {
|
if result := <-a.Srv.Store.Channel().Get(channelId, true); result.Err != nil && result.Err.Id == "store.sql_channel.get.existing.app_error" {
|
||||||
result.Err.StatusCode = http.StatusNotFound
|
result.Err.StatusCode = http.StatusNotFound
|
||||||
|
|||||||
20
i18n/en.json
20
i18n/en.json
@@ -215,6 +215,14 @@
|
|||||||
"id": "api.channel.change_channel_privacy.public_to_private",
|
"id": "api.channel.change_channel_privacy.public_to_private",
|
||||||
"translation": "This channel has been converted to a Private Channel."
|
"translation": "This channel has been converted to a Private Channel."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"id": "api.channel.convert_channel_to_private.default_channel_error",
|
||||||
|
"translation": "This default channel cannot be converted into a private channel."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "api.channel.convert_channel_to_private.private_channel_error",
|
||||||
|
"translation": "The channel requested to convert is already a private channel."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "api.channel.create_channel.direct_channel.app_error",
|
"id": "api.channel.create_channel.direct_channel.app_error",
|
||||||
"translation": "Must use createDirectChannel API service for direct message channel creation"
|
"translation": "Must use createDirectChannel API service for direct message channel creation"
|
||||||
@@ -331,18 +339,6 @@
|
|||||||
"id": "api.channel.leave.left",
|
"id": "api.channel.leave.left",
|
||||||
"translation": "%v left the channel."
|
"translation": "%v left the channel."
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"id": "api.channel.post_convert_channel_to_private.create_post.error",
|
|
||||||
"translation": "Failed to post channel conversion to private message"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "api.channel.post_convert_channel_to_private.retrieve_user.error",
|
|
||||||
"translation": "Failed to retrieve user while converting the channel from public to private"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "api.channel.post_convert_channel_to_private.updated_from",
|
|
||||||
"translation": "%s converted the channel from public to private"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"id": "api.channel.post_update_channel_displayname_message_and_forget.create_post.error",
|
"id": "api.channel.post_update_channel_displayname_message_and_forget.create_post.error",
|
||||||
"translation": "Failed to post displayname update message"
|
"translation": "Failed to post displayname update message"
|
||||||
|
|||||||
@@ -1491,6 +1491,16 @@ func (c *Client4) PatchChannel(channelId string, patch *ChannelPatch) (*Channel,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ConvertChannelToPrivate converts public to private channel.
|
||||||
|
func (c *Client4) ConvertChannelToPrivate(channelId string) (*Channel, *Response) {
|
||||||
|
if r, err := c.DoApiPost(c.GetChannelRoute(channelId)+"/convert", ""); err != nil {
|
||||||
|
return nil, BuildErrorResponse(r, err)
|
||||||
|
} else {
|
||||||
|
defer closeBody(r)
|
||||||
|
return ChannelFromJson(r.Body), BuildResponse(r)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// RestoreChannel restores a previously deleted channel. Any missing fields are not updated.
|
// RestoreChannel restores a previously deleted channel. Any missing fields are not updated.
|
||||||
func (c *Client4) RestoreChannel(channelId string) (*Channel, *Response) {
|
func (c *Client4) RestoreChannel(channelId string) (*Channel, *Response) {
|
||||||
if r, err := c.DoApiPost(c.GetChannelRoute(channelId)+"/restore", ""); err != nil {
|
if r, err := c.DoApiPost(c.GetChannelRoute(channelId)+"/restore", ""); err != nil {
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user