package cmd import ( "html/template" "strings" "time" "github.com/RadhiFadlillah/go-readability" "github.com/RadhiFadlillah/shiori/model" "github.com/spf13/cobra" ) var ( addCmd = &cobra.Command{ Use: "add url", Short: "Bookmark the specified URL", Args: cobra.ExactArgs(1), Run: func(cmd *cobra.Command, args []string) { // Read flag and arguments url := args[0] title, _ := cmd.Flags().GetString("title") excerpt, _ := cmd.Flags().GetString("excerpt") tags, _ := cmd.Flags().GetStringSlice("tags") offline, _ := cmd.Flags().GetBool("offline") // Create bookmark item bookmark := model.Bookmark{ URL: url, Title: normalizeSpace(title), Excerpt: normalizeSpace(excerpt), } bookmark.Tags = make([]model.Tag, len(tags)) for i, tag := range tags { bookmark.Tags[i].Name = strings.TrimSpace(tag) } // Save new bookmark result, err := addBookmark(bookmark, offline) if err != nil { cError.Println(err) return } printBookmark(result) }, } ) func init() { addCmd.Flags().StringP("title", "i", "", "Custom title for this bookmark.") addCmd.Flags().StringP("excerpt", "e", "", "Custom excerpt for this bookmark.") addCmd.Flags().StringSliceP("tags", "t", []string{}, "Comma-separated tags for this bookmark.") addCmd.Flags().BoolP("offline", "o", false, "Save bookmark without fetching data from internet.") rootCmd.AddCommand(addCmd) } func addBookmark(base model.Bookmark, offline bool) (book model.Bookmark, err error) { // Prepare initial result book = base // Fetch data from internet if !offline { article, err := readability.Parse(book.URL, 10*time.Second) if err != nil { cError.Println("Failed to fetch article from internet:", err) if book.Title == "" { book.Title = "Untitled" } } else { book.URL = article.URL book.ImageURL = article.Meta.Image book.Author = article.Meta.Author book.MinReadTime = article.Meta.MinReadTime book.MaxReadTime = article.Meta.MaxReadTime book.Content = article.Content book.HTML = template.HTML(article.RawContent) if book.Title == "" { book.Title = article.Meta.Title } if book.Excerpt == "" { book.Excerpt = article.Meta.Excerpt } } } // Save to database book.ID, err = DB.CreateBookmark(book) return book, err } func normalizeSpace(str string) string { return strings.Join(strings.Fields(str), " ") }