Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0c3bf0701d | |||
| 0bc777c6f1 | |||
| 2055bba5f0 | |||
| a2a1f9c06d | |||
| 79280135a1 | |||
| 4422f3840e | |||
| ffcf7c0438 | |||
| a910aac946 | |||
| eed41aebbb | |||
| 037be4d7e8 | |||
| 6cf327226d | |||
| 42fd1973b8 | |||
| 1563c7b21d |
1
.vscode/settings.json
vendored
1
.vscode/settings.json
vendored
@@ -2,6 +2,7 @@
|
||||
"cSpell.words": [
|
||||
"bolthold",
|
||||
"colly",
|
||||
"htmx",
|
||||
"incpatch",
|
||||
"linkwallet",
|
||||
"nicetime",
|
||||
|
||||
@@ -18,6 +18,12 @@ type BookmarkManager struct {
|
||||
scrapeQueue chan *entity.Bookmark
|
||||
}
|
||||
|
||||
type SearchOptions struct {
|
||||
Query string
|
||||
Tags []string
|
||||
Sort string
|
||||
}
|
||||
|
||||
func NewBookmarkManager(db *DB) *BookmarkManager {
|
||||
return &BookmarkManager{db: db, scrapeQueue: make(chan *entity.Bookmark)}
|
||||
}
|
||||
@@ -94,28 +100,12 @@ func (m *BookmarkManager) LoadBookmarkByID(id uint64) entity.Bookmark {
|
||||
return ret
|
||||
}
|
||||
|
||||
func (m *BookmarkManager) LoadBookmarksByIDs(ids []uint64) []entity.Bookmark {
|
||||
// log.Printf("loading %v", ids)
|
||||
ret := make([]entity.Bookmark, 0, 0)
|
||||
|
||||
s := make([]interface{}, len(ids))
|
||||
for i, v := range ids {
|
||||
s[i] = v
|
||||
}
|
||||
|
||||
err := m.db.store.Find(&ret, bolthold.Where("ID").In(s...))
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
return ret
|
||||
}
|
||||
|
||||
func (m *BookmarkManager) Search(query string) ([]entity.Bookmark, error) {
|
||||
rets := make([]uint64, 0, 0)
|
||||
func (m *BookmarkManager) Search(opts SearchOptions) ([]entity.Bookmark, error) {
|
||||
|
||||
// first get a list of all the ids that match our query
|
||||
idsMatchingQuery := make([]uint64, 0, 0)
|
||||
counts := make(map[uint64]uint8)
|
||||
|
||||
words := content.StringToSearchWords(query)
|
||||
words := content.StringToSearchWords(opts.Query)
|
||||
|
||||
for _, word := range words {
|
||||
var wi *entity.WordIndex
|
||||
@@ -133,14 +123,55 @@ func (m *BookmarkManager) Search(query string) ([]entity.Bookmark, error) {
|
||||
|
||||
for k, v := range counts {
|
||||
if v == uint8(len(words)) {
|
||||
rets = append(rets, k)
|
||||
if len(rets) > 10 {
|
||||
idsMatchingQuery = append(idsMatchingQuery, k)
|
||||
if len(idsMatchingQuery) > 10 {
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return m.LoadBookmarksByIDs(rets), nil
|
||||
// now we can do our search
|
||||
bhQuery := bolthold.Query{}
|
||||
if opts.Query != "" {
|
||||
bhQuery = bolthold.Query(*bhQuery.And("ID").In(bolthold.Slice(idsMatchingQuery)...))
|
||||
}
|
||||
if opts.Tags != nil && len(opts.Tags) > 0 {
|
||||
bhQuery = bolthold.Query(*bhQuery.And("Tags").ContainsAll(bolthold.Slice(opts.Tags)...))
|
||||
}
|
||||
|
||||
reverse := false
|
||||
sortOrder := opts.Sort
|
||||
if sortOrder != "" && sortOrder[0] == '-' {
|
||||
reverse = true
|
||||
sortOrder = sortOrder[1:]
|
||||
}
|
||||
|
||||
if sortOrder == "title" {
|
||||
bhQuery.SortBy("Info.Title")
|
||||
} else if sortOrder == "created" {
|
||||
bhQuery.SortBy("TimestampCreated")
|
||||
} else if sortOrder == "scraped" {
|
||||
bhQuery.SortBy("TimestampLastScraped")
|
||||
} else {
|
||||
bhQuery.SortBy("ID")
|
||||
}
|
||||
|
||||
if reverse {
|
||||
bhQuery = *bhQuery.Reverse()
|
||||
}
|
||||
|
||||
out := []entity.Bookmark{}
|
||||
err := m.db.store.ForEach(&bhQuery,
|
||||
func(bm *entity.Bookmark) error {
|
||||
out = append(out, *bm)
|
||||
|
||||
return nil
|
||||
})
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (m *BookmarkManager) ScrapeAndIndex(bm *entity.Bookmark) error {
|
||||
|
||||
@@ -73,7 +73,7 @@ func BenchmarkOneWordSearch(b *testing.B) {
|
||||
bmm := NewBookmarkManager(&dbh)
|
||||
b.ResetTimer()
|
||||
for i := 0; i < b.N; i++ {
|
||||
bmm.Search("hello")
|
||||
bmm.Search(SearchOptions{Query: "hello"})
|
||||
}
|
||||
}
|
||||
|
||||
@@ -84,7 +84,7 @@ func BenchmarkTwoWordSearch(b *testing.B) {
|
||||
bmm := NewBookmarkManager(&dbh)
|
||||
b.ResetTimer()
|
||||
for i := 0; i < b.N; i++ {
|
||||
bmm.Search("human relate")
|
||||
bmm.Search(SearchOptions{Query: "human relate"})
|
||||
}
|
||||
}
|
||||
|
||||
@@ -95,6 +95,6 @@ func BenchmarkThreeWordSearch(b *testing.B) {
|
||||
bmm := NewBookmarkManager(&dbh)
|
||||
b.ResetTimer()
|
||||
for i := 0; i < b.N; i++ {
|
||||
bmm.Search("human wiki editor")
|
||||
bmm.Search(SearchOptions{Query: "human wiki editor"})
|
||||
}
|
||||
}
|
||||
|
||||
@@ -47,7 +47,7 @@ func TestAddRemove(t *testing.T) {
|
||||
t.Errorf("scrape index returned %s", err)
|
||||
}
|
||||
|
||||
searchRes, err := bmm.Search("fox")
|
||||
searchRes, err := bmm.Search(SearchOptions{Query: "fox"})
|
||||
if err != nil {
|
||||
t.Errorf("search returned %s", err)
|
||||
}
|
||||
@@ -62,7 +62,7 @@ func TestAddRemove(t *testing.T) {
|
||||
t.Errorf("scrape index returned %s", err)
|
||||
}
|
||||
|
||||
searchRes, err = bmm.Search("fox")
|
||||
searchRes, err = bmm.Search(SearchOptions{Query: "fox"})
|
||||
if err != nil {
|
||||
t.Errorf("search returned %s", err)
|
||||
}
|
||||
@@ -70,7 +70,7 @@ func TestAddRemove(t *testing.T) {
|
||||
t.Error("got result when should not")
|
||||
}
|
||||
|
||||
searchRes, err = bmm.Search("rabbit")
|
||||
searchRes, err = bmm.Search(SearchOptions{Query: "rabbit"})
|
||||
if err != nil {
|
||||
t.Errorf("search returned %s", err)
|
||||
}
|
||||
@@ -83,7 +83,7 @@ func TestAddRemove(t *testing.T) {
|
||||
t.Errorf("got error when deleting: %s", err)
|
||||
}
|
||||
|
||||
searchRes, err = bmm.Search("rabbit")
|
||||
searchRes, err = bmm.Search(SearchOptions{Query: "rabbit"})
|
||||
if err != nil {
|
||||
t.Errorf("search returned %s", err)
|
||||
}
|
||||
@@ -119,7 +119,7 @@ func TestTagIndexing(t *testing.T) {
|
||||
t.Errorf("scrape index returned %s", err)
|
||||
}
|
||||
|
||||
searchRes, err := bmm.Search("fox")
|
||||
searchRes, err := bmm.Search(SearchOptions{Query: "fox"})
|
||||
if err != nil {
|
||||
t.Errorf("search returned %s", err)
|
||||
}
|
||||
@@ -133,7 +133,7 @@ func TestTagIndexing(t *testing.T) {
|
||||
if err != nil {
|
||||
t.Errorf("scrape index returned %s", err)
|
||||
}
|
||||
searchRes, err = bmm.Search("sloth")
|
||||
searchRes, err = bmm.Search(SearchOptions{Query: "sloth"})
|
||||
if err != nil {
|
||||
t.Errorf("search returned %s", err)
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@ import (
|
||||
"golang.org/x/mod/semver"
|
||||
)
|
||||
|
||||
const Tag = "v0.0.20"
|
||||
const Tag = "v0.0.25"
|
||||
|
||||
var versionInfo struct {
|
||||
Local struct {
|
||||
@@ -55,7 +55,7 @@ func UpdateVersionInfo() {
|
||||
|
||||
rels, _, err := client.Repositories.ListReleases(context.Background(), "tardisx", "linkwallet", nil)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
return
|
||||
}
|
||||
if len(rels) == 0 {
|
||||
return
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<div class="large-8 medium-8 cell" id="add-url-form" >
|
||||
<div>
|
||||
<h5 style="display:inline-block;">Add a new URL</h5>
|
||||
<p style="display:inline-block;">[<a hx-get="/bulk_add" hx-target="#add-url-form" href="#">bulk add</a>]</h5>
|
||||
<div style="display:inline-block;">[<a hx-get="/bulk_add" hx-swap="outerHTML" hx-target="#add-url-form" href="#">bulk add</a>]</div></h5>
|
||||
</div>
|
||||
|
||||
<form onsubmit="return false">
|
||||
|
||||
@@ -1,14 +1,13 @@
|
||||
<div class="large-8 medium-8 cell" id="add-url-form" >
|
||||
<div>
|
||||
<h5 style="display:inline-block;">Add bulk URLs</h5>
|
||||
<p style="display:inline-block;">[<a hx-get="/single_add" hx-target="#add-url-form" href="#">single add</a>]</h5>
|
||||
</div> <form onsubmit="return false">
|
||||
<p style="display:inline-block;">[<a hx-get="/single_add" hx-swap="outerHTML" hx-target="#add-url-form" href="#">single add</a>]</h5>
|
||||
</div>
|
||||
<form onsubmit="return false">
|
||||
<div class="grid-x grid-padding-x">
|
||||
<div class="large-12 cell">
|
||||
<label>Paste URL's, one per line</label>
|
||||
<textarea type="text" name="urls" rows="10"
|
||||
></textarea>
|
||||
|
||||
<textarea type="text" name="urls" rows="10"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<button
|
||||
|
||||
@@ -1,38 +1,21 @@
|
||||
<div class="grid-x grid-padding-x">
|
||||
<div class="grid-x grid-padding-x" id="manage">
|
||||
<div class="large-12 cell">
|
||||
|
||||
<h5>Manage links</h5>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<th> </th>
|
||||
<th>title/url</th>
|
||||
<th>tags</th>
|
||||
<th class="show-for-large">created</th>
|
||||
<th class="show-for-large">scraped</th>
|
||||
</tr>
|
||||
{{ range .bookmarks }}
|
||||
<tr>
|
||||
<th><a class="button" href="/edit/{{ .ID }}">edit</a></th>
|
||||
<td>
|
||||
<a href="{{ .URL }}">{{ .Info.Title }}</a>
|
||||
<br>
|
||||
<a href="{{ .URL }}">{{ niceURL .URL }}</a>
|
||||
</td>
|
||||
<td>
|
||||
{{ range .Tags }}
|
||||
<span class="label primary">{{ . }}</span>
|
||||
{{ end }}
|
||||
</td>
|
||||
<td class="show-for-large">{{ (nicetime .TimestampCreated).HumanDuration }} ago</td>
|
||||
<td class="show-for-large">{{ (nicetime .TimestampLastScraped).HumanDuration }} ago</td>
|
||||
<form onsubmit="return false">
|
||||
<div class="grid-x grid-padding-x">
|
||||
<div class="large-12 cell">
|
||||
<label>Filter</label>
|
||||
<input type="text" name="query" placeholder="" hx-post="/manage/results" hx-swap="outerHTML"
|
||||
hx-trigger="keyup changed delay:500ms, tag_update" hx-target="#manage-results"
|
||||
hx-indicator="#htmx-indicator-search" id="manage-search" />
|
||||
</div>
|
||||
</div>
|
||||
{{ template "tags_widget.html" . }}
|
||||
{{ template "manage_results.html" . }}
|
||||
|
||||
<td>
|
||||
<a class="button" hx-swap="outerHTML" hx-post="/scrape/{{ .ID }}">scrape</button>
|
||||
</td>
|
||||
</tr>
|
||||
{{ end }}
|
||||
</table>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
31
web/templates/manage_results.html
Normal file
31
web/templates/manage_results.html
Normal file
@@ -0,0 +1,31 @@
|
||||
|
||||
<table id="manage-results">
|
||||
<tr>
|
||||
<th> </th>
|
||||
{{ template "manage_results_column_header.html" .column.title }}
|
||||
<th>tags</th>
|
||||
{{ template "manage_results_column_header.html" .column.created }}
|
||||
{{ template "manage_results_column_header.html" .column.scraped }}
|
||||
</tr>
|
||||
{{ range .bookmarks }}
|
||||
<tr>
|
||||
<th><a class="button" href="/edit/{{ .ID }}">edit</a></th>
|
||||
<td>
|
||||
<a href="{{ .URL }}">{{ .Info.Title }}</a>
|
||||
<br>
|
||||
<a href="{{ .URL }}">{{ niceURL .URL }}</a>
|
||||
</td>
|
||||
<td>
|
||||
{{ range .Tags }}
|
||||
<span class="label primary">{{ . }}</span>
|
||||
{{ end }}
|
||||
</td>
|
||||
<td class="show-for-large">{{ (nicetime .TimestampCreated).HumanDuration }} ago</td>
|
||||
<td class="show-for-large">{{ (nicetime .TimestampLastScraped).HumanDuration }} ago</td>
|
||||
|
||||
<td>
|
||||
<a class="button" hx-swap="outerHTML" hx-post="/scrape/{{ .ID }}">scrape</button>
|
||||
</td>
|
||||
</tr>
|
||||
{{ end }}
|
||||
</table>
|
||||
3
web/templates/manage_results_column_header.html
Normal file
3
web/templates/manage_results_column_header.html
Normal file
@@ -0,0 +1,3 @@
|
||||
|
||||
<th class="{{ .Class }}" hx-post="/manage/results?sort={{ .URLString }}" hx-target="#manage-results">{{ .Name }} {{ .TitleArrow }}
|
||||
</th>
|
||||
@@ -1,15 +1,15 @@
|
||||
<div id="label-widget">
|
||||
<div id="label-widget" >
|
||||
<div class="grid-x grid-padding-x">
|
||||
<div class="small-9 medium-10 large-5 cell"
|
||||
hx-post="/tags"
|
||||
hx-target="#label-widget"
|
||||
hx-trigger="change">
|
||||
hx-trigger="change queue:first">
|
||||
<label for="tag-entry"
|
||||
class="">Tags</label>
|
||||
|
||||
<input id="tag-entry" type="text" name="tag" placeholder="enter tags" />
|
||||
</div>
|
||||
<div class="small-12 large-6 cell">
|
||||
<div class="small-12 large-6 cell" id="tags-list">
|
||||
{{ range .tags }}
|
||||
<a href="#"
|
||||
class=""
|
||||
@@ -20,7 +20,7 @@
|
||||
<span class="label primary">{{ . }}</span>
|
||||
|
||||
{{ end }}
|
||||
<input type="hidden" name="tags_hidden" value="{{ .tags_hidden }}">
|
||||
<input _="on load send tag_update to #manage-search" type="hidden" id="tags-hidden" name="tags_hidden" value="{{ .tags_hidden }}">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
78
web/web.go
78
web/web.go
@@ -42,6 +42,29 @@ type Server struct {
|
||||
bmm *db.BookmarkManager
|
||||
}
|
||||
|
||||
type ColumnInfo struct {
|
||||
Name string
|
||||
Param string
|
||||
Sorted string
|
||||
Class string
|
||||
}
|
||||
|
||||
func (c ColumnInfo) URLString() string {
|
||||
if c.Sorted == "asc" {
|
||||
return "-" + c.Param
|
||||
}
|
||||
return c.Param
|
||||
}
|
||||
|
||||
func (c ColumnInfo) TitleArrow() string {
|
||||
if c.Sorted == "asc" {
|
||||
return "↑"
|
||||
} else if c.Sorted == "desc" {
|
||||
return "↓"
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// Create creates a new web server instance and sets up routing.
|
||||
func Create(bmm *db.BookmarkManager, cmm *db.ConfigManager) *Server {
|
||||
|
||||
@@ -81,6 +104,7 @@ func Create(bmm *db.BookmarkManager, cmm *db.ConfigManager) *Server {
|
||||
})
|
||||
|
||||
r.GET("/manage", func(c *gin.Context) {
|
||||
|
||||
allBookmarks, _ := bmm.ListBookmarks()
|
||||
meta := gin.H{"page": "manage", "config": config, "bookmarks": allBookmarks}
|
||||
c.HTML(http.StatusOK,
|
||||
@@ -88,6 +112,52 @@ func Create(bmm *db.BookmarkManager, cmm *db.ConfigManager) *Server {
|
||||
)
|
||||
})
|
||||
|
||||
r.POST("/manage/results", func(c *gin.Context) {
|
||||
query := c.PostForm("query")
|
||||
tags := []string{}
|
||||
sort := c.Query("sort")
|
||||
|
||||
if c.PostForm("tags_hidden") != "" {
|
||||
tags = strings.Split(c.PostForm("tags_hidden"), "|")
|
||||
}
|
||||
allBookmarks, _ := bmm.Search(db.SearchOptions{Query: query, Tags: tags, Sort: sort})
|
||||
meta := gin.H{"config": config, "bookmarks": allBookmarks}
|
||||
|
||||
colTitle := &ColumnInfo{Name: "Title/URL", Param: "title"}
|
||||
colCreated := &ColumnInfo{Name: "Created", Param: "created", Class: "show-for-large"}
|
||||
colScraped := &ColumnInfo{Name: "Scraped", Param: "scraped", Class: "show-for-large"}
|
||||
if sort == "title" {
|
||||
colTitle.Sorted = "asc"
|
||||
}
|
||||
if sort == "-title" {
|
||||
colTitle.Sorted = "desc"
|
||||
}
|
||||
if sort == "scraped" {
|
||||
colScraped.Sorted = "asc"
|
||||
}
|
||||
if sort == "-scraped" {
|
||||
colScraped.Sorted = "desc"
|
||||
}
|
||||
if sort == "created" {
|
||||
colCreated.Sorted = "asc"
|
||||
}
|
||||
if sort == "-created" {
|
||||
colCreated.Sorted = "desc"
|
||||
}
|
||||
|
||||
cols := gin.H{
|
||||
"title": colTitle,
|
||||
"created": colCreated,
|
||||
"scraped": colScraped,
|
||||
}
|
||||
meta["column"] = cols
|
||||
|
||||
c.HTML(http.StatusOK,
|
||||
"manage_results.html", meta,
|
||||
)
|
||||
|
||||
})
|
||||
|
||||
r.GET("/config", func(c *gin.Context) {
|
||||
meta := gin.H{"page": "config", "config": config}
|
||||
c.HTML(http.StatusOK,
|
||||
@@ -107,7 +177,7 @@ func Create(bmm *db.BookmarkManager, cmm *db.ConfigManager) *Server {
|
||||
r.POST("/search", func(c *gin.Context) {
|
||||
query := c.PostForm("query")
|
||||
|
||||
sr, err := bmm.Search(query)
|
||||
sr, err := bmm.Search(db.SearchOptions{Query: query})
|
||||
data := gin.H{
|
||||
"results": sr,
|
||||
"error": err,
|
||||
@@ -332,7 +402,10 @@ func cleanupTags(tags []string) []string {
|
||||
keys := make(map[string]struct{})
|
||||
for _, k := range tags {
|
||||
if k != "" && k != "|" {
|
||||
keys[strings.ToLower(k)] = struct{}{}
|
||||
for _, subKey := range strings.Split(k, ",") {
|
||||
subKey := strings.Trim(subKey, " ")
|
||||
keys[strings.ToLower(subKey)] = struct{}{}
|
||||
}
|
||||
}
|
||||
}
|
||||
out := []string{}
|
||||
@@ -356,6 +429,7 @@ func niceTime(t time.Time) timeVariations {
|
||||
panic(err)
|
||||
}
|
||||
ago := durafmt.Parse(time.Since(t)).LimitFirstN(1).Format(units)
|
||||
ago = strings.ReplaceAll(ago, " ", "")
|
||||
|
||||
return timeVariations{HumanDuration: ago}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user