mirror of
https://github.com/go-shiori/shiori.git
synced 2025-09-14 00:45:33 +08:00
* refactor: base http server stdlib * refactor: swagger and frontend routes * fix: use global middlewares * refactor: removed gin from testutils * fix: object references in legacy webserver * refactor: legacy, swagger and system handlers * fix: added verbs to handlers * fix: server handlers ordering * refactor: bookmarks handlers * refactor: system api routes * tests: bookmark handlers * refactor: migrated api auth routes * chore: remove unused middlewares * docs: add swagger docs to refactored system api * chore: remove old auth routes * refactor: account apis * chore: removed old handlers * fix: api v1 handlers missing middlewares * refactor: migrated tag list route * refactor: bookmark routes * refactor: remove gin * chore: make styles * test: fixed tests * test: generate binary file without text * fix: global middleware missing from system api handler * fix: incorrect api handler * chore: avoid logging screenshot contents * tests: bookmarks domain * tests: shortcuts * test: missing tests * tests: server tests * test: remove test using syscall to avoid windows errors * chore: added middlewares
96 lines
2.3 KiB
Go
96 lines
2.3 KiB
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
fp "path/filepath"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/go-shiori/shiori/internal/model"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func exportCmd() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "export target-file",
|
|
Short: "Export bookmarks into HTML file in Netscape Bookmark format",
|
|
Args: cobra.ExactArgs(1),
|
|
Run: exportHandler,
|
|
}
|
|
|
|
return cmd
|
|
}
|
|
|
|
func exportHandler(cmd *cobra.Command, args []string) {
|
|
_, deps := initShiori(cmd.Context(), cmd)
|
|
|
|
// Fetch bookmarks from database
|
|
bookmarks, err := deps.Database().GetBookmarks(cmd.Context(), model.DBGetBookmarksOptions{})
|
|
if err != nil {
|
|
cError.Printf("Failed to get bookmarks: %v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
if len(bookmarks) == 0 {
|
|
cError.Println("No saved bookmarks yet")
|
|
return
|
|
}
|
|
|
|
// Make sure destination directory exist
|
|
dstDir := fp.Dir(args[0])
|
|
if err := os.MkdirAll(dstDir, model.DataDirPerm); err != nil {
|
|
cError.Printf("Error crating destination directory: %s", err)
|
|
}
|
|
|
|
// Create destination file
|
|
dstFile, err := os.Create(args[0])
|
|
if err != nil {
|
|
cError.Printf("Failed to create destination file: %v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
defer dstFile.Close()
|
|
|
|
// Write exported bookmark to file
|
|
fmt.Fprintln(dstFile, ``+
|
|
`<!DOCTYPE NETSCAPE-Bookmark-file-1>`+
|
|
`<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">`+
|
|
`<TITLE>Bookmarks</TITLE>`+
|
|
`<H1>Bookmarks</H1>`+
|
|
`<DL>`)
|
|
|
|
for _, book := range bookmarks {
|
|
// Create Unix timestamp for bookmark
|
|
modifiedTime, err := time.Parse(model.DatabaseDateFormat, book.ModifiedAt)
|
|
if err != nil {
|
|
modifiedTime = time.Now()
|
|
}
|
|
unixTimestamp := modifiedTime.Unix()
|
|
|
|
// Create tags for bookmarks
|
|
tags := []string{}
|
|
for _, tag := range book.Tags {
|
|
tags = append(tags, tag.Name)
|
|
}
|
|
strTags := strings.Join(tags, ",")
|
|
|
|
// Make sure title is valid
|
|
book.Title = validateTitle(book.Title, book.URL)
|
|
|
|
// Write to file
|
|
exportLine := fmt.Sprintf(`<DT><A HREF="%s" ADD_DATE="%d" LAST_MODIFIED="%d" TAGS="%s">%s</A>`,
|
|
book.URL, unixTimestamp, unixTimestamp, strTags, book.Title)
|
|
fmt.Fprintln(dstFile, exportLine)
|
|
}
|
|
|
|
fmt.Fprintln(dstFile, "</DL>")
|
|
|
|
// Flush data to storage
|
|
err = dstFile.Sync()
|
|
if err != nil {
|
|
cError.Printf("Failed to export the bookmarks: %v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
fmt.Println("Export finished")
|
|
}
|