feat(views): save view and position in Typesense
This commit is contained in:
parent
5641da27f7
commit
43f24661d7
@ -19,6 +19,8 @@ package models
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
"github.com/typesense/typesense-go/typesense/api"
|
||||
"github.com/typesense/typesense-go/typesense/api/pointer"
|
||||
"strconv"
|
||||
"time"
|
||||
|
||||
@ -534,6 +536,15 @@ func (l *AddTaskToTypesense) Handle(msg *message.Message) (err error) {
|
||||
return err
|
||||
}
|
||||
|
||||
_, err = typesenseClient.Collection("tasks").
|
||||
Documents().
|
||||
Delete(context.Background(), &api.DeleteDocumentsParams{
|
||||
FilterBy: pointer.String("task_id:" + strconv.FormatInt(event.Task.ID, 10)),
|
||||
})
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
_, err = typesenseClient.Collection("tasks").
|
||||
Documents().
|
||||
Create(context.Background(), ttask)
|
||||
|
@ -47,6 +47,7 @@ const (
|
||||
taskPropertyPosition string = "position"
|
||||
taskPropertyBucketID string = "bucket_id"
|
||||
taskPropertyIndex string = "index"
|
||||
taskPropertyProjectViewID string = "project_view_id"
|
||||
)
|
||||
|
||||
const (
|
||||
|
@ -416,29 +416,6 @@ func convertParsedFilterToTypesense(rawFilters []*taskFilter) (filterBy string,
|
||||
|
||||
func (t *typesenseTaskSearcher) Search(opts *taskSearchOptions) (tasks []*Task, totalCount int64, err error) {
|
||||
|
||||
var sortbyFields []string
|
||||
for i, param := range opts.sortby {
|
||||
// Validate the params
|
||||
if err := param.validate(); err != nil {
|
||||
return nil, totalCount, err
|
||||
}
|
||||
|
||||
// Typesense does not allow sorting by ID, so we sort by created timestamp instead
|
||||
if param.sortBy == "id" {
|
||||
param.sortBy = "created"
|
||||
}
|
||||
|
||||
sortbyFields = append(sortbyFields, param.sortBy+"(missing_values:last):"+param.orderBy.String())
|
||||
|
||||
if i == 2 {
|
||||
// Typesense supports up to 3 sorting parameters
|
||||
// https://typesense.org/docs/0.25.0/api/search.html#ranking-and-sorting-parameters
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
sortby := strings.Join(sortbyFields, ",")
|
||||
|
||||
projectIDStrings := []string{}
|
||||
for _, id := range opts.projectIDs {
|
||||
projectIDStrings = append(projectIDStrings, strconv.FormatInt(id, 10))
|
||||
@ -454,6 +431,34 @@ func (t *typesenseTaskSearcher) Search(opts *taskSearchOptions) (tasks []*Task,
|
||||
"(" + filter + ")",
|
||||
}
|
||||
|
||||
var sortbyFields []string
|
||||
for i, param := range opts.sortby {
|
||||
// Validate the params
|
||||
if err := param.validate(); err != nil {
|
||||
return nil, totalCount, err
|
||||
}
|
||||
|
||||
// Typesense does not allow sorting by ID, so we sort by created timestamp instead
|
||||
if param.sortBy == taskPropertyID {
|
||||
param.sortBy = taskPropertyCreated
|
||||
}
|
||||
|
||||
if param.sortBy == taskPropertyPosition {
|
||||
filterBy = append(filterBy, "project_view_id: "+strconv.FormatInt(param.projectViewID, 10))
|
||||
break
|
||||
}
|
||||
|
||||
sortbyFields = append(sortbyFields, param.sortBy+"(missing_values:last):"+param.orderBy.String())
|
||||
|
||||
if i == 2 {
|
||||
// Typesense supports up to 3 sorting parameters
|
||||
// https://typesense.org/docs/0.25.0/api/search.html#ranking-and-sorting-parameters
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
sortby := strings.Join(sortbyFields, ",")
|
||||
|
||||
////////////////
|
||||
// Actual search
|
||||
|
||||
|
@ -258,7 +258,6 @@ func getTaskIndexFromSearchString(s string) (index int64) {
|
||||
return
|
||||
}
|
||||
|
||||
//nolint:gocyclo
|
||||
func getRawTasksForProjects(s *xorm.Session, projects []*Project, a web.Auth, opts *taskSearchOptions) (tasks []*Task, resultCount int, totalItems int64, err error) {
|
||||
|
||||
// If the user does not have any projects, don't try to get any tasks
|
||||
|
@ -19,6 +19,8 @@ package models
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"strconv"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"code.vikunja.io/api/pkg/config"
|
||||
@ -157,6 +159,10 @@ func CreateTypesenseCollections() error {
|
||||
Name: "created_by_id",
|
||||
Type: "int64",
|
||||
},
|
||||
{
|
||||
Name: "project_view_id",
|
||||
Type: "int64",
|
||||
},
|
||||
{
|
||||
Name: "reminders",
|
||||
Type: "object[]", // TODO
|
||||
@ -243,14 +249,17 @@ func ReindexAllTasks() (err error) {
|
||||
return
|
||||
}
|
||||
|
||||
func getTypesenseTaskForTask(s *xorm.Session, task *Task, projectsCache map[int64]*Project) (ttask *typesenseTask, err error) {
|
||||
func getTypesenseTaskForTask(s *xorm.Session, task *Task, projectsCache map[int64]*Project) (ttasks []*typesenseTask, err error) {
|
||||
positions := []*TaskPosition{}
|
||||
err = s.Where("task_id = ?", task.ID).Find(&positions)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
ttask = convertTaskToTypesenseTask(task, positions)
|
||||
for _, position := range positions {
|
||||
ttask := convertTaskToTypesenseTask(task, position)
|
||||
ttasks = append(ttasks, ttask)
|
||||
}
|
||||
|
||||
var p *Project
|
||||
if projectsCache == nil {
|
||||
@ -271,11 +280,15 @@ func getTypesenseTaskForTask(s *xorm.Session, task *Task, projectsCache map[int6
|
||||
}
|
||||
|
||||
comment := &TaskComment{TaskID: task.ID}
|
||||
ttask.Comments, _, _, err = comment.ReadAll(s, &user.User{ID: p.OwnerID}, "", -1, -1)
|
||||
comments, _, _, err := comment.ReadAll(s, &user.User{ID: p.OwnerID}, "", -1, -1)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("could not fetch comments for task %d: %s", task.ID, err.Error())
|
||||
}
|
||||
|
||||
for _, t := range ttasks {
|
||||
t.Comments = comments
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
@ -292,18 +305,33 @@ func reindexTasksInTypesense(s *xorm.Session, tasks map[int64]*Task) (err error)
|
||||
}
|
||||
|
||||
projects := make(map[int64]*Project)
|
||||
|
||||
typesenseTasks := []interface{}{}
|
||||
taskIDs := []string{}
|
||||
|
||||
for _, task := range tasks {
|
||||
|
||||
ttask, err := getTypesenseTaskForTask(s, task, projects)
|
||||
ttasks, err := getTypesenseTaskForTask(s, task, projects)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
for _, ttask := range ttasks {
|
||||
typesenseTasks = append(typesenseTasks, ttask)
|
||||
}
|
||||
|
||||
taskIDs = append(taskIDs, strconv.FormatInt(task.ID, 10))
|
||||
}
|
||||
|
||||
_, err = typesenseClient.Collection("tasks").
|
||||
Documents().
|
||||
Delete(context.Background(), &api.DeleteDocumentsParams{
|
||||
FilterBy: pointer.String("task_id:[" + strings.Join(taskIDs, ",") + "]"),
|
||||
})
|
||||
if err != nil {
|
||||
log.Errorf("Could not delete old tasks in Typesense", err)
|
||||
return err
|
||||
}
|
||||
|
||||
_, err = typesenseClient.Collection("tasks").
|
||||
Documents().
|
||||
Import(context.Background(), typesenseTasks, &api.ImportDocumentsParams{
|
||||
@ -398,6 +426,7 @@ func indexDummyTask() (err error) {
|
||||
|
||||
type typesenseTask struct {
|
||||
ID string `json:"id"`
|
||||
TaskID string `json:"task_id"`
|
||||
Title string `json:"title"`
|
||||
Description string `json:"description"`
|
||||
Done bool `json:"done"`
|
||||
@ -424,15 +453,20 @@ type typesenseTask struct {
|
||||
//RelatedTasks interface{} `json:"related_tasks"` // TODO
|
||||
Attachments interface{} `json:"attachments"`
|
||||
Comments interface{} `json:"comments"`
|
||||
Positions []*struct {
|
||||
Position float64 `json:"position"`
|
||||
ProjectViewID int64 `json:"project_view_id"`
|
||||
} `json:"positions"`
|
||||
}
|
||||
|
||||
func convertTaskToTypesenseTask(task *Task, positions []*TaskPosition) *typesenseTask {
|
||||
func convertTaskToTypesenseTask(task *Task, position *TaskPosition) *typesenseTask {
|
||||
|
||||
var projectViewID int64
|
||||
if position != nil {
|
||||
projectViewID = position.ProjectViewID
|
||||
}
|
||||
|
||||
tt := &typesenseTask{
|
||||
ID: fmt.Sprintf("%d", task.ID),
|
||||
ID: fmt.Sprintf("%d_%d", task.ID, projectViewID),
|
||||
TaskID: fmt.Sprintf("%d", task.ID),
|
||||
Title: task.Title,
|
||||
Description: task.Description,
|
||||
Done: task.Done,
|
||||
@ -458,6 +492,8 @@ func convertTaskToTypesenseTask(task *Task, positions []*TaskPosition) *typesens
|
||||
Labels: task.Labels,
|
||||
//RelatedTasks: task.RelatedTasks,
|
||||
Attachments: task.Attachments,
|
||||
Position: position.Position,
|
||||
ProjectViewID: projectViewID,
|
||||
}
|
||||
|
||||
if task.DoneAt.IsZero() {
|
||||
@ -473,16 +509,6 @@ func convertTaskToTypesenseTask(task *Task, positions []*TaskPosition) *typesens
|
||||
tt.EndDate = nil
|
||||
}
|
||||
|
||||
for _, position := range positions {
|
||||
tt.Positions = append(tt.Positions, &struct {
|
||||
Position float64 `json:"position"`
|
||||
ProjectViewID int64 `json:"project_view_id"`
|
||||
}{
|
||||
Position: position.Position,
|
||||
ProjectViewID: position.ProjectViewID,
|
||||
})
|
||||
}
|
||||
|
||||
return tt
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user