miniflux-v2/internal/integration/pinboard/pinboard.go

53 lines
1.2 KiB
Go
Raw Normal View History

// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
2017-12-03 04:32:14 +01:00
package pinboard // import "miniflux.app/v2/internal/integration/pinboard"
2017-12-03 04:32:14 +01:00
import (
"fmt"
"net/url"
"miniflux.app/v2/internal/http/client"
2017-12-03 04:32:14 +01:00
)
2017-12-03 06:12:03 +01:00
// Client represents a Pinboard client.
2017-12-03 04:32:14 +01:00
type Client struct {
authToken string
}
// NewClient returns a new Pinboard client.
func NewClient(authToken string) *Client {
return &Client{authToken: authToken}
}
2017-12-03 04:32:14 +01:00
// AddBookmark sends a link to Pinboard.
func (c *Client) AddBookmark(link, title, tags string, markAsUnread bool) error {
if c.authToken == "" {
return fmt.Errorf("pinboard: missing credentials")
}
2017-12-03 04:32:14 +01:00
toRead := "no"
if markAsUnread {
toRead = "yes"
}
values := url.Values{}
values.Add("auth_token", c.authToken)
values.Add("url", link)
values.Add("description", title)
values.Add("tags", tags)
values.Add("toread", toRead)
2018-04-28 19:51:07 +02:00
clt := client.New("https://api.pinboard.in/v1/posts/add?" + values.Encode())
response, err := clt.Get()
if err != nil {
return fmt.Errorf("pinboard: unable to send bookmark: %v", err)
}
2017-12-03 04:32:14 +01:00
if response.HasServerFailure() {
2017-12-19 05:52:46 +01:00
return fmt.Errorf("pinboard: unable to send bookmark, status=%d", response.StatusCode)
2017-12-03 04:32:14 +01:00
}
return nil
2017-12-03 04:32:14 +01:00
}