miniflux-v2/integration/pinboard/pinboard.go

54 lines
1.2 KiB
Go
Raw Normal View History

2017-12-03 04:32:14 +01:00
// Copyright 2017 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
2018-08-25 06:51:50 +02:00
package pinboard // import "miniflux.app/integration/pinboard"
2017-12-03 04:32:14 +01:00
import (
"fmt"
"net/url"
2018-08-25 06:51:50 +02:00
"miniflux.app/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
}
// 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
}
// NewClient returns a new Pinboard client.
func NewClient(authToken string) *Client {
return &Client{authToken: authToken}
}