aboutsummaryrefslogtreecommitdiffhomepage
path: root/integration/instapaper/instapaper.go
blob: 3b9e91c1ce552eb2af612024801f9b2ce4b597ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// 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.

package instapaper

import (
	"fmt"
	"net/url"

	"github.com/miniflux/miniflux/http/client"
)

// Client represents an Instapaper client.
type Client struct {
	username string
	password string
}

// AddURL sends a link to Instapaper.
func (c *Client) AddURL(link, title string) error {
	if c.username == "" || c.password == "" {
		return fmt.Errorf("instapaper: missing credentials")
	}

	values := url.Values{}
	values.Add("url", link)
	values.Add("title", title)

	apiURL := "https://www.instapaper.com/api/add?" + values.Encode()
	clt := client.New(apiURL)
	clt.WithCredentials(c.username, c.password)
	response, err := clt.Get()
	if err != nil {
		return fmt.Errorf("instapaper: unable to send url: %v", err)
	}

	if response.HasServerFailure() {
		return fmt.Errorf("instapaper: unable to send url, status=%d", response.StatusCode)
	}

	return nil
}

// NewClient returns a new Instapaper client.
func NewClient(username, password string) *Client {
	return &Client{username: username, password: password}
}