commit06ed2c3cbeAuthor: adminoo <git@kadath.corp> Date: Tue Feb 3 11:34:24 2026 +0100 fix: changed detected by scanner but no updated by render layer commit01dcaf882aAuthor: adminoo <git@kadath.corp> Date: Tue Feb 3 10:19:05 2026 +0100 feat: VERSION bumb commit229223f77aAuthor: adminoo <git@kadath.corp> Date: Tue Feb 3 09:53:08 2026 +0100 feat: filter and search by tag commitcb11e34798Author: adminoo <git@kadath.corp> Date: Tue Feb 3 09:41:03 2026 +0100 feat: tag system commit3f5cf0d673Author: adminoo <git@kadath.corp> Date: Tue Feb 3 09:15:29 2026 +0100 feat: sqlite storage draft commitd6617cec02Author: adminoo <git@kadath.corp> Date: Tue Feb 3 09:04:11 2026 +0100 feat: metadata draft commit7238d02a13Author: adminoo <git@kadath.corp> Date: Mon Feb 2 10:18:42 2026 +0100 fix: body overflowing commit16ff836274Author: adminoo <git@kadath.corp> Date: Mon Feb 2 10:09:01 2026 +0100 feat: tests for http handlers and render package commit36ac3f03aaAuthor: adminoo <git@kadath.corp> Date: Mon Feb 2 09:45:29 2026 +0100 feat: Dark theme, placeholder metadata panel commite6923fa4f5Author: adminoo <git@kadath.corp> Date: Sun Feb 1 18:26:59 2026 +0100 fix: uneeded func + uneeded bogus note creation logic commit4458ba2d15Author: adminoo <git@kadath.corp> Date: Sun Feb 1 18:26:21 2026 +0100 feat: log when changing note states commit92a6f84540Author: adminoo <git@kadath.corp> Date: Sun Feb 1 16:55:40 2026 +0100 possibly first working draft commite27aadc603Author: adminoo <git@kadath.corp> Date: Sun Feb 1 11:55:16 2026 +0100 draft shits
125 lines
2.3 KiB
Go
125 lines
2.3 KiB
Go
package service
|
|
|
|
import (
|
|
"donniemarko/internal/note"
|
|
"donniemarko/internal/storage"
|
|
"sort"
|
|
"strings"
|
|
)
|
|
|
|
type NotesService struct {
|
|
storage storage.Storage
|
|
}
|
|
|
|
type SortOption func([]*note.Note)
|
|
|
|
type QueryOptions struct {
|
|
SearchTerm string
|
|
SortBy string
|
|
}
|
|
|
|
func NewNoteService() *NotesService {
|
|
return &NotesService{}
|
|
}
|
|
|
|
func (s *NotesService) SetStorage(storage storage.Storage) {
|
|
s.storage = storage
|
|
}
|
|
|
|
func SortByDate(notes []*note.Note) {
|
|
sort.Slice(notes, func(i, j int) bool {
|
|
return notes[i].UpdatedAt.After(notes[j].UpdatedAt)
|
|
})
|
|
}
|
|
|
|
func SortByDateAsc(notes []*note.Note) {
|
|
sort.Slice(notes, func(i, j int) bool {
|
|
return notes[i].UpdatedAt.Before(notes[j].UpdatedAt)
|
|
})
|
|
}
|
|
|
|
func SortByTitle(notes []*note.Note) {
|
|
sort.Slice(notes, func(i, j int) bool {
|
|
return notes[i].Title < notes[j].Title
|
|
})
|
|
}
|
|
|
|
func SortByTitleAsc(notes []*note.Note) {
|
|
sort.Slice(notes, func(i, j int) bool {
|
|
return notes[i].Title > notes[j].Title
|
|
})
|
|
}
|
|
|
|
func (s *NotesService) GetNotesWithSort(sortBy SortOption) ([]*note.Note, error) {
|
|
notes := s.storage.GetAll()
|
|
|
|
if sortBy != nil {
|
|
sortBy(notes)
|
|
}
|
|
|
|
return notes, nil
|
|
}
|
|
|
|
func (s *NotesService) QueryNotes(opts QueryOptions) ([]*note.Note, error) {
|
|
var notes []*note.Note
|
|
|
|
// Search or get all
|
|
if opts.SearchTerm != "" {
|
|
notes = s.storage.Search(opts.SearchTerm)
|
|
} else {
|
|
notes = s.storage.GetAll()
|
|
}
|
|
|
|
// Apply sorting
|
|
switch opts.SortBy {
|
|
case "recent":
|
|
SortByDate(notes)
|
|
case "alpha":
|
|
SortByTitle(notes)
|
|
case "oldest":
|
|
SortByDateAsc(notes)
|
|
default:
|
|
SortByDate(notes) // Default sort
|
|
}
|
|
|
|
return notes, nil
|
|
}
|
|
|
|
func (s *NotesService) GetNoteByHash(hash string) (*note.Note, error) {
|
|
return s.storage.Get(hash)
|
|
}
|
|
|
|
func (s *NotesService) GetNotes() []*note.Note {
|
|
return s.storage.GetAll()
|
|
}
|
|
|
|
func (s *NotesService) AddTag(noteID, tag string) error {
|
|
tag = normalizeTag(tag)
|
|
if tag == "" {
|
|
return nil
|
|
}
|
|
|
|
if _, err := s.storage.Get(noteID); err != nil {
|
|
return err
|
|
}
|
|
|
|
return s.storage.AddTag(noteID, tag)
|
|
}
|
|
|
|
func (s *NotesService) RemoveTag(noteID, tag string) error {
|
|
tag = normalizeTag(tag)
|
|
if tag == "" {
|
|
return nil
|
|
}
|
|
|
|
if _, err := s.storage.Get(noteID); err != nil {
|
|
return err
|
|
}
|
|
|
|
return s.storage.RemoveTag(noteID, tag)
|
|
}
|
|
|
|
func normalizeTag(tag string) string {
|
|
return strings.ToLower(strings.TrimSpace(tag))
|
|
}
|