mirror of
https://github.com/go-shiori/shiori.git
synced 2025-10-19 01:56:04 +08:00
* migrate bookmark content route to new http server * new archive page * remove unused go generate comment * database mock * utils cleanup * unused var * domains refactor and tests * fixed secret key type * redirect to login on ui errors * fixed archive folder with storage domain * webroot documentation * some bookmark route tests * fixed error in bookmark domain for non existant bookmarks * centralice errors * add coverage data to unittests * added tests, refactor storage to use afero * removed mock to avoid increasing complexity * using deps to copy files around * remove config usage (to deps) * remove handler-ui file
159 lines
3.7 KiB
Go
159 lines
3.7 KiB
Go
package cmd
|
|
|
|
import (
|
|
"database/sql"
|
|
"errors"
|
|
"fmt"
|
|
"os"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/PuerkitoBio/goquery"
|
|
"github.com/go-shiori/shiori/internal/core"
|
|
"github.com/go-shiori/shiori/internal/model"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func importCmd() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "import source-file",
|
|
Short: "Import bookmarks from HTML file in Netscape Bookmark format",
|
|
Args: cobra.ExactArgs(1),
|
|
Run: importHandler,
|
|
}
|
|
|
|
cmd.Flags().BoolP("generate-tag", "t", false, "Auto generate tag from bookmark's category")
|
|
|
|
return cmd
|
|
}
|
|
|
|
func importHandler(cmd *cobra.Command, args []string) {
|
|
_, deps := initShiori(cmd.Context(), cmd)
|
|
|
|
// Parse flags
|
|
generateTag := cmd.Flags().Changed("generate-tag")
|
|
|
|
// If user doesn't specify, ask if tag need to be generated
|
|
if !generateTag {
|
|
var submit string
|
|
fmt.Print("Add parents folder as tag? (y/N): ")
|
|
fmt.Scanln(&submit)
|
|
|
|
generateTag = submit == "y"
|
|
}
|
|
|
|
// Open bookmark's file
|
|
srcFile, err := os.Open(args[0])
|
|
if err != nil {
|
|
cError.Printf("Failed to open %s: %v\n", args[0], err)
|
|
os.Exit(1)
|
|
}
|
|
defer srcFile.Close()
|
|
|
|
// Parse bookmark's file
|
|
bookmarks := []model.BookmarkDTO{}
|
|
mapURL := make(map[string]struct{})
|
|
|
|
doc, err := goquery.NewDocumentFromReader(srcFile)
|
|
if err != nil {
|
|
cError.Printf("Failed to parse bookmark: %v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
doc.Find("dt>a").Each(func(_ int, a *goquery.Selection) {
|
|
// Get related elements
|
|
dt := a.Parent()
|
|
dl := dt.Parent()
|
|
h3 := dl.Parent().Find("h3").First()
|
|
|
|
// Get metadata
|
|
title := a.Text()
|
|
url, _ := a.Attr("href")
|
|
strTags, _ := a.Attr("tags")
|
|
|
|
dateStr, fieldExists := a.Attr("last_modified")
|
|
if !fieldExists {
|
|
dateStr, _ = a.Attr("add_date")
|
|
}
|
|
|
|
// Using now as default date in case no last_modified nor add_date are present
|
|
modifiedDate := time.Now()
|
|
if dateStr != "" {
|
|
modifiedTsInt, err := strconv.Atoi(dateStr)
|
|
if err != nil {
|
|
cError.Printf("Skip %s: date field is not valid: %s", url, err)
|
|
return
|
|
}
|
|
|
|
modifiedDate = time.Unix(int64(modifiedTsInt), 0)
|
|
}
|
|
|
|
// Clean up URL
|
|
url, err = core.RemoveUTMParams(url)
|
|
if err != nil {
|
|
cError.Printf("Skip %s: URL is not valid\n", url)
|
|
return
|
|
}
|
|
|
|
// Make sure title is valid Utf-8
|
|
title = validateTitle(title, url)
|
|
|
|
// Check if the URL already exist before, both in bookmark
|
|
// file or in database
|
|
if _, exist := mapURL[url]; exist {
|
|
cError.Printf("Skip %s: URL already exists\n", url)
|
|
return
|
|
}
|
|
|
|
_, exist, err := deps.Database.GetBookmark(cmd.Context(), 0, url)
|
|
if err != nil && !errors.Is(err, sql.ErrNoRows) {
|
|
cError.Printf("Skip %s: Get Bookmark fail, %v", url, err)
|
|
return
|
|
}
|
|
|
|
if exist {
|
|
cError.Printf("Skip %s: URL already exists\n", url)
|
|
mapURL[url] = struct{}{}
|
|
return
|
|
}
|
|
|
|
// Get bookmark tags
|
|
tags := []model.Tag{}
|
|
for _, strTag := range strings.Split(strTags, ",") {
|
|
strTag = normalizeSpace(strTag)
|
|
if strTag != "" {
|
|
tags = append(tags, model.Tag{Name: strTag})
|
|
}
|
|
}
|
|
|
|
// Get category name for this bookmark
|
|
// and add it as tags (if necessary)
|
|
category := normalizeSpace(h3.Text())
|
|
if category != "" && generateTag {
|
|
tags = append(tags, model.Tag{Name: category})
|
|
}
|
|
|
|
// Add item to list
|
|
bookmark := model.BookmarkDTO{
|
|
URL: url,
|
|
Title: title,
|
|
Tags: tags,
|
|
Modified: modifiedDate.Format(model.DatabaseDateFormat),
|
|
}
|
|
|
|
mapURL[url] = struct{}{}
|
|
bookmarks = append(bookmarks, bookmark)
|
|
})
|
|
|
|
// Save bookmark to database
|
|
bookmarks, err = deps.Database.SaveBookmarks(cmd.Context(), true, bookmarks...)
|
|
if err != nil {
|
|
cError.Printf("Failed to save bookmarks: %v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
// Print imported bookmark
|
|
fmt.Println()
|
|
printBookmarks(bookmarks...)
|
|
}
|