Excludes remote channels from channel search (#28708)

* Excludes remote channels from channel search

This is done through a new body parameter in the SearchAllChannels
endpoint that allows to search for local only channels, which are
either channels that are shared but marked as homed locally, or
channels that are not shared at all.

* fix lint

* Fix tests

---------

Co-authored-by: Caleb Roseland <caleb@calebroseland.com>
Этот коммит содержится в:
Miguel de la Cruz
2024-10-18 15:41:24 +02:00
коммит произвёл GitHub
родитель f06742c7e2
Коммит b4d8b6239c
13 изменённых файлов: 82 добавлений и 8 удалений

Просмотреть файл

@@ -287,7 +287,6 @@
__Minimum server version__: 5.26 __Minimum server version__: 5.26
deleted: deleted:
type: boolean type: boolean
description: > description: >
@@ -314,7 +313,6 @@
required to use this parameter. required to use this parameter.
__Minimum server version__: 5.35 __Minimum server version__: 5.35
include_search_by_id: include_search_by_id:
type: boolean type: boolean
default: false default: false
@@ -322,6 +320,13 @@
If set to true, returns channels where given search 'term' matches channel ID. If set to true, returns channels where given search 'term' matches channel ID.
__Minimum server version__: 5.35 __Minimum server version__: 5.35
exclude_remote:
type: boolean
default: false
description: >
If set to true, only returns channels that are local to this server.
__Minimum server version__: 10.2
description: The search terms and logic to use in the search. description: The search terms and logic to use in the search.
required: true required: true
responses: responses:

Просмотреть файл

@@ -1299,6 +1299,7 @@ func searchAllChannels(c *Context, w http.ResponseWriter, r *http.Request) {
ExcludeGroupConstrained: props.ExcludeGroupConstrained, ExcludeGroupConstrained: props.ExcludeGroupConstrained,
ExcludePolicyConstrained: props.ExcludePolicyConstrained, ExcludePolicyConstrained: props.ExcludePolicyConstrained,
IncludeSearchById: props.IncludeSearchById, IncludeSearchById: props.IncludeSearchById,
ExcludeRemote: props.ExcludeRemote,
Public: props.Public, Public: props.Public,
Private: props.Private, Private: props.Private,
IncludeDeleted: includeDeleted, IncludeDeleted: includeDeleted,

Просмотреть файл

@@ -1696,7 +1696,7 @@ func TestSearchArchivedChannels(t *testing.T) {
} }
func TestSearchAllChannels(t *testing.T) { func TestSearchAllChannels(t *testing.T) {
th := Setup(t).InitBasic() th := setupForSharedChannels(t).InitBasic()
th.LoginSystemManager() th.LoginSystemManager()
defer th.TearDown() defer th.TearDown()
client := th.Client client := th.Client
@@ -1737,6 +1737,29 @@ func TestSearchAllChannels(t *testing.T) {
}) })
require.NoError(t, err) require.NoError(t, err)
// share the open and private channels, one homed locally and the
// other remotely
sco := &model.SharedChannel{
ChannelId: openChannel.Id,
TeamId: openChannel.TeamId,
Home: true,
ShareName: "testsharelocal",
CreatorId: th.BasicChannel.CreatorId,
}
_, scoErr := th.App.ShareChannel(th.Context, sco)
require.NoError(t, scoErr)
scp := &model.SharedChannel{
ChannelId: privateChannel.Id,
TeamId: privateChannel.TeamId,
Home: false,
RemoteId: model.NewId(),
ShareName: "testshareremote",
CreatorId: th.BasicChannel.CreatorId,
}
_, scpErr := th.App.ShareChannel(th.Context, scp)
require.NoError(t, scpErr)
testCases := []struct { testCases := []struct {
Description string Description string
Search *model.ChannelSearch Search *model.ChannelSearch
@@ -1847,6 +1870,11 @@ func TestSearchAllChannels(t *testing.T) {
&model.ChannelSearch{Term: "SearchAllChannels", ExcludeGroupConstrained: true}, &model.ChannelSearch{Term: "SearchAllChannels", ExcludeGroupConstrained: true},
[]string{openChannel.Id, privateChannel.Id}, []string{openChannel.Id, privateChannel.Id},
}, },
{
"Search for local only channels",
&model.ChannelSearch{Term: "SearchAllChannels", ExcludeRemote: true},
[]string{openChannel.Id, groupConstrainedChannel.Id},
},
} }
for _, testCase := range testCases { for _, testCase := range testCases {
t.Run(testCase.Description, func(t *testing.T) { t.Run(testCase.Description, func(t *testing.T) {

Просмотреть файл

@@ -2923,6 +2923,7 @@ func (a *App) SearchAllChannels(c request.CTX, term string, opts model.ChannelSe
PolicyID: opts.PolicyID, PolicyID: opts.PolicyID,
IncludePolicyID: opts.IncludePolicyID, IncludePolicyID: opts.IncludePolicyID,
IncludeSearchById: opts.IncludeSearchById, IncludeSearchById: opts.IncludeSearchById,
ExcludeRemote: opts.ExcludeRemote,
ExcludePolicyConstrained: opts.ExcludePolicyConstrained, ExcludePolicyConstrained: opts.ExcludePolicyConstrained,
Public: opts.Public, Public: opts.Public,
Private: opts.Private, Private: opts.Private,

Просмотреть файл

@@ -3411,6 +3411,16 @@ func (s SqlChannelStore) channelSearchQuery(opts *store.ChannelSearchOpts) sq.Se
}) })
} }
if opts.ExcludeRemote {
// local channels either have a SharedChannels record with
// home set to true, or don't have a SharedChannels record at all
query = query.LeftJoin("SharedChannels ON c.Id = SharedChannels.ChannelId").
Where(sq.Or{
sq.Eq{"SharedChannels.Home": true},
sq.Eq{"SharedChannels.ChannelId": nil},
})
}
return query return query
} }

Просмотреть файл

@@ -1074,6 +1074,7 @@ type ChannelSearchOpts struct {
IncludePolicyID bool IncludePolicyID bool
IncludeTeamInfo bool IncludeTeamInfo bool
IncludeSearchById bool IncludeSearchById bool
ExcludeRemote bool
CountOnly bool CountOnly bool
Public bool Public bool
Private bool Private bool

Просмотреть файл

@@ -6506,6 +6506,29 @@ func testChannelStoreSearchAllChannels(t *testing.T, rctx request.CTX, ss store.
}) })
require.NoError(t, nErr) require.NoError(t, nErr)
// Mark o12 and o14 as shared, o13 will be homed locally and o14
// will be homed remotely
sc12 := &model.SharedChannel{
ChannelId: o12.Id,
TeamId: o12.TeamId,
CreatorId: model.NewId(),
ShareName: "testsharelocal",
Home: true,
}
_, scErr := ss.SharedChannel().Save(sc12)
require.NoError(t, scErr)
sc14 := &model.SharedChannel{
ChannelId: o14.Id,
TeamId: o14.TeamId,
CreatorId: model.NewId(),
ShareName: "testshareremote",
Home: false,
RemoteId: model.NewId(),
}
_, sc2Err := ss.SharedChannel().Save(sc14)
require.NoError(t, sc2Err)
testCases := []struct { testCases := []struct {
Description string Description string
Term string Term string
@@ -6550,6 +6573,7 @@ func testChannelStoreSearchAllChannels(t *testing.T, rctx request.CTX, ss store.
{"Filter team 1 and team 2, public and private and exclude group constrained", "", store.ChannelSearchOpts{IncludeDeleted: false, TeamIds: []string{t1.Id, t2.Id}, Public: true, Private: true, ExcludeGroupConstrained: true, Page: model.NewPointer(0), PerPage: model.NewPointer(5)}, model.ChannelList{&o1, &o2, &o3, &o4, &o6}, 12}, {"Filter team 1 and team 2, public and private and exclude group constrained", "", store.ChannelSearchOpts{IncludeDeleted: false, TeamIds: []string{t1.Id, t2.Id}, Public: true, Private: true, ExcludeGroupConstrained: true, Page: model.NewPointer(0), PerPage: model.NewPointer(5)}, model.ChannelList{&o1, &o2, &o3, &o4, &o6}, 12},
{"Filter deleted returns only deleted channels", "", store.ChannelSearchOpts{Deleted: true, Page: model.NewPointer(0), PerPage: model.NewPointer(5)}, model.ChannelList{&o13}, 1}, {"Filter deleted returns only deleted channels", "", store.ChannelSearchOpts{Deleted: true, Page: model.NewPointer(0), PerPage: model.NewPointer(5)}, model.ChannelList{&o13}, 1},
{"Search ChannelA by id", o1.Id, store.ChannelSearchOpts{IncludeDeleted: false, Page: model.NewPointer(0), PerPage: model.NewPointer(5), IncludeSearchById: true}, model.ChannelList{&o1}, 1}, {"Search ChannelA by id", o1.Id, store.ChannelSearchOpts{IncludeDeleted: false, Page: model.NewPointer(0), PerPage: model.NewPointer(5), IncludeSearchById: true}, model.ChannelList{&o1}, 1},
{"Filter excluding remote channels", "", store.ChannelSearchOpts{IncludeDeleted: false, ExcludeRemote: true}, model.ChannelList{&o1, &o2, &o3, &o4, &o5, &o6, &o7, &o8, &o9, &o10, &o11, &o12}, 0},
} }
for _, testCase := range testCases { for _, testCase := range testCases {

Просмотреть файл

@@ -180,6 +180,7 @@ type ChannelSearchOpts struct {
ExcludePolicyConstrained bool ExcludePolicyConstrained bool
IncludePolicyID bool IncludePolicyID bool
IncludeSearchById bool IncludeSearchById bool
ExcludeRemote bool
Public bool Public bool
Private bool Private bool
Page *int Page *int

Просмотреть файл

@@ -17,6 +17,7 @@ type ChannelSearch struct {
Private bool `json:"private"` Private bool `json:"private"`
IncludeDeleted bool `json:"include_deleted"` IncludeDeleted bool `json:"include_deleted"`
IncludeSearchById bool `json:"include_search_by_id"` IncludeSearchById bool `json:"include_search_by_id"`
ExcludeRemote bool `json:"exclude_remote"`
Deleted bool `json:"deleted"` Deleted bool `json:"deleted"`
Page *int `json:"page,omitempty"` Page *int `json:"page,omitempty"`
PerPage *int `json:"per_page,omitempty"` PerPage *int `json:"per_page,omitempty"`

Просмотреть файл

@@ -79,7 +79,7 @@ function SharedChannelsAddModal({
return []; return [];
} }
const {data} = await dispatch(searchAllChannels(query, {page: 0, per_page: 20, signal})); const {data} = await dispatch(searchAllChannels(query, {page: 0, per_page: 20, exclude_remote: true, signal}));
if (data) { if (data) {
return data.channels.filter(({id}) => { return data.channels.filter(({id}) => {
const remote = remotesByChannelId?.[id]; const remote = remotesByChannelId?.[id];

Просмотреть файл

@@ -1132,7 +1132,7 @@ describe('Actions.Channels', () => {
); );
nock(Client4.getBaseRoute()). nock(Client4.getBaseRoute()).
post('/channels/search?include_deleted=false'). post('/channels/search?include_deleted=false&exclude_remote=false').
reply(200, [TestHelper.basicChannel, userChannel]); reply(200, [TestHelper.basicChannel, userChannel]);
await store.dispatch(Actions.searchAllChannels('test', {})); await store.dispatch(Actions.searchAllChannels('test', {}));
@@ -1143,7 +1143,7 @@ describe('Actions.Channels', () => {
} }
nock(Client4.getBaseRoute()). nock(Client4.getBaseRoute()).
post('/channels/search?include_deleted=false'). post('/channels/search?include_deleted=false&exclude_remote=false').
reply(200, {channels: [TestHelper.basicChannel, userChannel], total_count: 2}); reply(200, {channels: [TestHelper.basicChannel, userChannel], total_count: 2});
let response = await store.dispatch(Actions.searchAllChannels('test', {exclude_default_channels: false, page: 0, per_page: 100})); let response = await store.dispatch(Actions.searchAllChannels('test', {exclude_default_channels: false, page: 0, per_page: 100}));
@@ -1156,7 +1156,7 @@ describe('Actions.Channels', () => {
expect(response.data.channels.length === 2).toBeTruthy(); expect(response.data.channels.length === 2).toBeTruthy();
nock(Client4.getBaseRoute()). nock(Client4.getBaseRoute()).
post('/channels/search?include_deleted=true'). post('/channels/search?include_deleted=true&exclude_remote=false').
reply(200, {channels: [TestHelper.basicChannel, userChannel], total_count: 2}); reply(200, {channels: [TestHelper.basicChannel, userChannel], total_count: 2});
response = await store.dispatch(Actions.searchAllChannels('test', {exclude_default_channels: false, page: 0, per_page: 100, include_deleted: true})); response = await store.dispatch(Actions.searchAllChannels('test', {exclude_default_channels: false, page: 0, per_page: 100, include_deleted: true}));

Просмотреть файл

@@ -1961,7 +1961,8 @@ export default class Client4 {
}; };
const includeDeleted = Boolean(opts.include_deleted); const includeDeleted = Boolean(opts.include_deleted);
const nonAdminSearch = Boolean(opts.nonAdminSearch); const nonAdminSearch = Boolean(opts.nonAdminSearch);
let queryParams: {include_deleted?: boolean; system_console?: boolean} = {include_deleted: includeDeleted}; const excludeRemote = Boolean(opts.exclude_remote);
let queryParams: {include_deleted?: boolean; system_console?: boolean; exclude_remote?: boolean} = {include_deleted: includeDeleted, exclude_remote: excludeRemote};
if (nonAdminSearch) { if (nonAdminSearch) {
queryParams = {system_console: false}; queryParams = {system_console: false};
delete body.nonAdminSearch; delete body.nonAdminSearch;

Просмотреть файл

@@ -211,6 +211,7 @@ export type ChannelSearchOpts = {
private?: boolean; private?: boolean;
include_deleted?: boolean; include_deleted?: boolean;
include_search_by_id?: boolean; include_search_by_id?: boolean;
exclude_remote?: boolean;
deleted?: boolean; deleted?: boolean;
page?: number; page?: number;
per_page?: number; per_page?: number;