* Updated patch/update post API to allow file modification (#29447) * WIP * WIP * Atatched new files ton post * WIP: deleting removed files * Deleted removed files and invalidated file metadata cache * removed file ignore logif from update post API * Added TestFindExclusives * Added tests for DeleteForPostByIds * Added app layer tests * Added tests * Added API level tests * test enhancements * Fixed a test * Edit history include file metadata (#29505) * Send file metadata in edit history metadata * Added app tests * Added store tests * Added tests for populateEditHistoryFileMetadata{ * Added cache to avoid repetitigve DB calls for edits with only message changes * Added API tests * i18m fix * removed commented code * Improved test helper * Show attachments in edit history RHS (#29519) * Send file metadata in edit history metadata * Added app tests * Added store tests * Added tests for populateEditHistoryFileMetadata{ * Added cache to avoid repetitigve DB calls for edits with only message changes * Added API tests * i18m fix * WIUP: displa files in edit * removed commented code * Displayed file in edit history * Handled file icon * Fixed closing history component on clicking on file * Simplified selector * Simplified selector * Improved test helper * Disabled action menu on edit history file * Added tests * Improved selector * Updated snapshot * review Fixes * restructured componnets * Updated test * Updated test * Restore post api (#29643) * Restore post version API WIP * Undelete files WIP * Added store tests * Created post restore API * Updated updatepost safeUpdate signature * review fixex and improvements * Fixed an app test * Added API laer tests * Added API tests and OpenAPI specs * Fixed a typo * Allow editing files when editing posts (#29709) * WIP - basic view files when editing post * Cleanup * bg color * Added text editor tests for files * WIP * WIP * removed debug log * Allowed admin to add and remove files on someone else's post * Handled drafts and scheduled posts * linter fixes * Updated snapshot * server test fix * CI * Added doc * Restore post api integration (#29719) * WIP - basic view files when editing post * Cleanup * bg color * Added text editor tests for files * WIP * WIP * removed debug log * Allowed admin to add and remove files on someone else's post * Handled drafts and scheduled posts * linter fixes * Updated snapshot * server test fix * Used new API to restore post * handled edut limit and undo * lint fix * added comments * Fixed edit post item tests * Fixed buttons * Aded snapshots * fix test * Updated snapshot * Minor fixes * fixed snapshot * Edit file dnd area (#29763) * dnd wip * DND continued * Supported multiple unbind dragster funcs * lint fixes * Got center channel file drop working when editing a post * file dnd working with center channel and rhs * file dnd working with center channel and rhs * removed unneeded stopPropogation calls * cleanup * DND overlay fix * Lint fix * Advanced text editor test updates for file upload overlay * fixed use upload hook tests * Updated some more snapshots * minor cleanup * Updated i18n * removed need of array for dragster unbind events * lint fixes * edit history cursor * Fixed bugu causing faliure to delete empty posts (#29778) * Files in restore confirmation (#29781) * Added files to restore post confirmation dialog * Fixed post restore toast colors * Fixed restore bug * Fixed restore confirmation toast tests * a11y improvement and modal width fix * Edit attachment misc fixes (#29808) * Removed single image actions in restore post confirmation dialog * Fixed file drop overlay size and position * Made edit indiator accessible * Lint fix * Added bunch of more tests * ANother test migrated from enzyme to react testing library * More test enhancements * More test enhancements * More test enhancements * lint fixes * Fixed a test * Added missing snapshots * Test fixes
231 строка
8.4 KiB
Go
231 строка
8.4 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package searchlayer
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
"github.com/mattermost/mattermost/server/public/shared/mlog"
|
|
"github.com/mattermost/mattermost/server/public/shared/request"
|
|
"github.com/mattermost/mattermost/server/v8/channels/store"
|
|
"github.com/mattermost/mattermost/server/v8/platform/services/searchengine"
|
|
)
|
|
|
|
type SearchFileInfoStore struct {
|
|
store.FileInfoStore
|
|
rootStore *SearchStore
|
|
}
|
|
|
|
func (s SearchFileInfoStore) indexFile(rctx request.CTX, file *model.FileInfo) {
|
|
for _, engine := range s.rootStore.searchEngine.GetActiveEngines() {
|
|
if engine.IsIndexingEnabled() {
|
|
runIndexFn(rctx, engine, func(engineCopy searchengine.SearchEngineInterface) {
|
|
if file.PostId == "" && file.CreatorId != model.BookmarkFileOwner {
|
|
return
|
|
}
|
|
channelId := file.ChannelId
|
|
if file.PostId != "" {
|
|
post, postErr := s.rootStore.Post().GetSingle(rctx, file.PostId, false)
|
|
if postErr != nil {
|
|
rctx.Logger().Error("Couldn't get post for file for SearchEngine indexing.", mlog.String("post_id", file.PostId), mlog.String("search_engine", engineCopy.GetName()), mlog.String("file_info_id", file.Id), mlog.Err(postErr))
|
|
return
|
|
}
|
|
channelId = post.ChannelId
|
|
}
|
|
|
|
if channelId == "" {
|
|
rctx.Logger().Error("Couldn't associate file with a channel for file for SearchEngine indexing.", mlog.String("search_engine", engineCopy.GetName()), mlog.String("file_info_id", file.Id))
|
|
return
|
|
}
|
|
|
|
if err := engineCopy.IndexFile(file, channelId); err != nil {
|
|
rctx.Logger().Error("Encountered error indexing file", mlog.String("file_info_id", file.Id), mlog.String("search_engine", engineCopy.GetName()), mlog.Err(err))
|
|
return
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
func (s SearchFileInfoStore) deleteFileIndex(rctx request.CTX, fileID string) {
|
|
for _, engine := range s.rootStore.searchEngine.GetActiveEngines() {
|
|
if engine.IsIndexingEnabled() {
|
|
runIndexFn(rctx, engine, func(engineCopy searchengine.SearchEngineInterface) {
|
|
if err := engineCopy.DeleteFile(fileID); err != nil {
|
|
rctx.Logger().Error("Encountered error deleting file", mlog.String("file_info_id", fileID), mlog.String("search_engine", engineCopy.GetName()), mlog.Err(err))
|
|
return
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
func (s SearchFileInfoStore) deleteFileIndexForUser(rctx request.CTX, userID string) {
|
|
for _, engine := range s.rootStore.searchEngine.GetActiveEngines() {
|
|
if engine.IsIndexingEnabled() {
|
|
runIndexFn(rctx, engine, func(engineCopy searchengine.SearchEngineInterface) {
|
|
if err := engineCopy.DeleteUserFiles(rctx, userID); err != nil {
|
|
rctx.Logger().Error("Encountered error deleting files for user", mlog.String("user_id", userID), mlog.String("search_engine", engineCopy.GetName()), mlog.Err(err))
|
|
return
|
|
}
|
|
rctx.Logger().Debug("Removed user's files from the index in search engine", mlog.String("search_engine", engineCopy.GetName()), mlog.String("user_id", userID))
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
//nolint:unused // Temporarily unused until the post_id is indexed with the file
|
|
func (s SearchFileInfoStore) deleteFileIndexForPost(rctx request.CTX, postID string) {
|
|
for _, engine := range s.rootStore.searchEngine.GetActiveEngines() {
|
|
if engine.IsIndexingEnabled() {
|
|
runIndexFn(rctx, engine, func(engineCopy searchengine.SearchEngineInterface) {
|
|
if err := engineCopy.DeletePostFiles(rctx, postID); err != nil {
|
|
rctx.Logger().Error("Encountered error deleting files for post", mlog.String("post_id", postID), mlog.String("search_engine", engineCopy.GetName()), mlog.Err(err))
|
|
return
|
|
}
|
|
rctx.Logger().Debug("Removed post's files from the index in search engine", mlog.String("search_engine", engineCopy.GetName()), mlog.String("post_id", postID))
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
func (s SearchFileInfoStore) deleteFileIndexBatch(rctx request.CTX, endTime, limit int64) {
|
|
for _, engine := range s.rootStore.searchEngine.GetActiveEngines() {
|
|
if engine.IsIndexingEnabled() {
|
|
runIndexFn(rctx, engine, func(engineCopy searchengine.SearchEngineInterface) {
|
|
if err := engineCopy.DeleteFilesBatch(rctx, endTime, limit); err != nil {
|
|
rctx.Logger().Error("Encountered error deleting a batch of files", mlog.Int("limit", limit), mlog.Int("end_time", endTime), mlog.String("search_engine", engineCopy.GetName()), mlog.Err(err))
|
|
return
|
|
}
|
|
rctx.Logger().Debug("Removed batch of files from the index in search engine", mlog.String("search_engine", engineCopy.GetName()), mlog.Int("end_time", endTime), mlog.Int("limit", limit))
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
func (s SearchFileInfoStore) Save(rctx request.CTX, info *model.FileInfo) (*model.FileInfo, error) {
|
|
nfile, err := s.FileInfoStore.Save(rctx, info)
|
|
if err == nil {
|
|
s.indexFile(rctx, nfile)
|
|
}
|
|
return nfile, err
|
|
}
|
|
|
|
func (s SearchFileInfoStore) SetContent(rctx request.CTX, fileID, content string) error {
|
|
err := s.FileInfoStore.SetContent(rctx, fileID, content)
|
|
if err == nil {
|
|
nfile, err2 := s.FileInfoStore.GetFromMaster(fileID)
|
|
if err2 == nil {
|
|
nfile.Content = content
|
|
s.indexFile(rctx, nfile)
|
|
}
|
|
}
|
|
return err
|
|
}
|
|
|
|
func (s SearchFileInfoStore) AttachToPost(rctx request.CTX, fileId, postId, channelId, creatorId string) error {
|
|
err := s.FileInfoStore.AttachToPost(rctx, fileId, postId, channelId, creatorId)
|
|
if err == nil {
|
|
nFileInfo, err2 := s.FileInfoStore.GetFromMaster(fileId)
|
|
if err2 == nil {
|
|
s.indexFile(rctx, nFileInfo)
|
|
}
|
|
}
|
|
return err
|
|
}
|
|
|
|
func (s SearchFileInfoStore) DeleteForPost(rctx request.CTX, postID string) (string, error) {
|
|
// temporary workaround because deleteFileIndexForPost is not working due to the post_id not being indexed with the file
|
|
files, err := s.FileInfoStore.GetForPost(postID, false, true, true)
|
|
if err != nil {
|
|
return "", fmt.Errorf("failed to get files for post %s: %w", postID, err)
|
|
}
|
|
result, err := s.FileInfoStore.DeleteForPost(rctx, postID)
|
|
if err == nil {
|
|
for _, file := range files {
|
|
s.deleteFileIndex(rctx, file.Id)
|
|
}
|
|
}
|
|
return result, err
|
|
}
|
|
|
|
func (s SearchFileInfoStore) PermanentDeleteForPost(rctx request.CTX, postID string) error {
|
|
// temporary workaround because deleteFileIndexForPost is not working due to the post_id not being indexed with the file
|
|
files, err := s.FileInfoStore.GetForPost(postID, false, true, true)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = s.FileInfoStore.PermanentDeleteForPost(rctx, postID)
|
|
if err == nil {
|
|
for _, file := range files {
|
|
s.deleteFileIndex(rctx, file.Id)
|
|
}
|
|
}
|
|
return err
|
|
}
|
|
|
|
func (s SearchFileInfoStore) PermanentDelete(rctx request.CTX, fileId string) error {
|
|
err := s.FileInfoStore.PermanentDelete(rctx, fileId)
|
|
if err == nil {
|
|
s.deleteFileIndex(rctx, fileId)
|
|
}
|
|
return err
|
|
}
|
|
|
|
func (s SearchFileInfoStore) PermanentDeleteBatch(rctx request.CTX, endTime int64, limit int64) (int64, error) {
|
|
result, err := s.FileInfoStore.PermanentDeleteBatch(rctx, endTime, limit)
|
|
if err == nil {
|
|
s.deleteFileIndexBatch(rctx, endTime, limit)
|
|
}
|
|
return result, err
|
|
}
|
|
|
|
func (s SearchFileInfoStore) PermanentDeleteByUser(rctx request.CTX, userId string) (int64, error) {
|
|
result, err := s.FileInfoStore.PermanentDeleteByUser(rctx, userId)
|
|
if err == nil {
|
|
s.deleteFileIndexForUser(rctx, userId)
|
|
}
|
|
return result, err
|
|
}
|
|
|
|
func (s SearchFileInfoStore) Search(rctx request.CTX, paramsList []*model.SearchParams, userId, teamId string, page, perPage int) (*model.FileInfoList, error) {
|
|
for _, engine := range s.rootStore.searchEngine.GetActiveEngines() {
|
|
if engine.IsSearchEnabled() {
|
|
userChannels, nErr := s.rootStore.Channel().GetChannels(teamId, userId, &model.ChannelSearchOpts{
|
|
IncludeDeleted: paramsList[0].IncludeDeletedChannels,
|
|
LastDeleteAt: 0,
|
|
})
|
|
if nErr != nil {
|
|
return nil, nErr
|
|
}
|
|
fileIds, appErr := engine.SearchFiles(userChannels, paramsList, page, perPage)
|
|
if appErr != nil {
|
|
rctx.Logger().Error("Encountered error on Search.", mlog.String("search_engine", engine.GetName()), mlog.Err(appErr))
|
|
continue
|
|
}
|
|
|
|
// Get the files
|
|
filesList := model.NewFileInfoList()
|
|
if len(fileIds) > 0 {
|
|
files, nErr := s.FileInfoStore.GetByIds(fileIds, false, true)
|
|
if nErr != nil {
|
|
return nil, nErr
|
|
}
|
|
for _, f := range files {
|
|
filesList.AddFileInfo(f)
|
|
filesList.AddOrder(f.Id)
|
|
}
|
|
}
|
|
return filesList, nil
|
|
}
|
|
}
|
|
|
|
if *s.rootStore.getConfig().SqlSettings.DisableDatabaseSearch {
|
|
return model.NewFileInfoList(), nil
|
|
}
|
|
|
|
return s.FileInfoStore.Search(rctx, paramsList, userId, teamId, page, perPage)
|
|
}
|