2021-05-13 22:11:32 +02:00
|
|
|
package notion
|
|
|
|
|
|
|
|
import (
|
2021-05-15 00:02:08 +02:00
|
|
|
"bytes"
|
|
|
|
"context"
|
|
|
|
"encoding/json"
|
2021-05-13 22:11:32 +02:00
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"net/http"
|
2021-05-15 19:04:57 +02:00
|
|
|
"net/url"
|
|
|
|
"strconv"
|
2021-05-13 22:11:32 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2021-05-14 18:25:44 +02:00
|
|
|
baseURL = "https://api.notion.com/v1"
|
2021-12-13 12:42:03 +02:00
|
|
|
apiVersion = "2021-08-16"
|
2021-05-14 18:25:44 +02:00
|
|
|
clientVersion = "0.0.0"
|
2021-05-13 22:11:32 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// Client is used for HTTP requests to the Notion API.
|
|
|
|
type Client struct {
|
|
|
|
apiKey string
|
|
|
|
httpClient *http.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClientOption is used to override default client behavior.
|
|
|
|
type ClientOption func(*Client)
|
|
|
|
|
|
|
|
// NewClient returns a new Client.
|
|
|
|
func NewClient(apiKey string, opts ...ClientOption) *Client {
|
|
|
|
c := &Client{
|
|
|
|
apiKey: apiKey,
|
|
|
|
httpClient: http.DefaultClient,
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, opt := range opts {
|
|
|
|
opt(c)
|
|
|
|
}
|
|
|
|
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithHTTPClient overrides the default http.Client.
|
|
|
|
func WithHTTPClient(httpClient *http.Client) ClientOption {
|
|
|
|
return func(c *Client) {
|
|
|
|
c.httpClient = httpClient
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-15 00:02:08 +02:00
|
|
|
func (c *Client) newRequest(ctx context.Context, method, url string, body io.Reader) (*http.Request, error) {
|
|
|
|
req, err := http.NewRequestWithContext(ctx, method, baseURL+url, body)
|
2021-05-13 22:11:32 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
req.Header.Set("Authorization", fmt.Sprintf("Bearer %v", c.apiKey))
|
|
|
|
req.Header.Set("Notion-Version", apiVersion)
|
2021-05-14 18:25:44 +02:00
|
|
|
req.Header.Set("User-Agent", "go-notion/"+clientVersion)
|
2021-05-13 22:11:32 +02:00
|
|
|
|
2021-05-18 21:19:03 +02:00
|
|
|
if body != nil {
|
2021-05-14 23:47:15 +02:00
|
|
|
req.Header.Set("Content-Type", "application/json")
|
|
|
|
}
|
|
|
|
|
2021-05-13 22:11:32 +02:00
|
|
|
return req, nil
|
|
|
|
}
|
2021-05-15 00:02:08 +02:00
|
|
|
|
|
|
|
// FindDatabaseByID fetches a database by ID.
|
|
|
|
// See: https://developers.notion.com/reference/get-database
|
|
|
|
func (c *Client) FindDatabaseByID(ctx context.Context, id string) (db Database, err error) {
|
|
|
|
req, err := c.newRequest(ctx, http.MethodGet, "/databases/"+id, nil)
|
|
|
|
if err != nil {
|
2021-05-15 00:20:11 +02:00
|
|
|
return Database{}, fmt.Errorf("notion: invalid request: %w", err)
|
2021-05-15 00:02:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
res, err := c.httpClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return Database{}, fmt.Errorf("notion: failed to make HTTP request: %w", err)
|
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
|
|
|
|
if res.StatusCode != http.StatusOK {
|
|
|
|
return Database{}, fmt.Errorf("notion: failed to find database: %w", parseErrorResponse(res))
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.NewDecoder(res.Body).Decode(&db)
|
|
|
|
if err != nil {
|
|
|
|
return Database{}, fmt.Errorf("notion: failed to parse HTTP response: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return db, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// QueryDatabase returns database contents, with optional filters, sorts and pagination.
|
|
|
|
// See: https://developers.notion.com/reference/post-database-query
|
2021-05-18 21:19:03 +02:00
|
|
|
func (c *Client) QueryDatabase(ctx context.Context, id string, query *DatabaseQuery) (result DatabaseQueryResponse, err error) {
|
2021-05-15 00:02:08 +02:00
|
|
|
body := &bytes.Buffer{}
|
|
|
|
|
2021-05-18 21:19:03 +02:00
|
|
|
if query != nil {
|
|
|
|
err = json.NewEncoder(body).Encode(query)
|
|
|
|
if err != nil {
|
|
|
|
return DatabaseQueryResponse{}, fmt.Errorf("notion: failed to encode filter to JSON: %w", err)
|
|
|
|
}
|
2021-05-15 00:02:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
req, err := c.newRequest(ctx, http.MethodPost, fmt.Sprintf("/databases/%v/query", id), body)
|
|
|
|
if err != nil {
|
2021-05-15 00:20:11 +02:00
|
|
|
return DatabaseQueryResponse{}, fmt.Errorf("notion: invalid request: %w", err)
|
2021-05-15 00:02:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
res, err := c.httpClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return DatabaseQueryResponse{}, fmt.Errorf("notion: failed to make HTTP request: %w", err)
|
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
|
|
|
|
if res.StatusCode != http.StatusOK {
|
2021-05-18 21:19:03 +02:00
|
|
|
return DatabaseQueryResponse{}, fmt.Errorf("notion: failed to query database: %w", parseErrorResponse(res))
|
2021-05-15 00:02:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
err = json.NewDecoder(res.Body).Decode(&result)
|
|
|
|
if err != nil {
|
|
|
|
return DatabaseQueryResponse{}, fmt.Errorf("notion: failed to parse HTTP response: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|
2021-05-15 00:19:30 +02:00
|
|
|
|
2021-07-20 22:50:53 +02:00
|
|
|
// CreateDatabase creates a new database as a child of an existing page.
|
|
|
|
// See: https://developers.notion.com/reference/create-a-database
|
|
|
|
func (c *Client) CreateDatabase(ctx context.Context, params CreateDatabaseParams) (db Database, err error) {
|
|
|
|
if err := params.Validate(); err != nil {
|
|
|
|
return Database{}, fmt.Errorf("notion: invalid database params: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
body := &bytes.Buffer{}
|
|
|
|
|
|
|
|
err = json.NewEncoder(body).Encode(params)
|
|
|
|
if err != nil {
|
|
|
|
return Database{}, fmt.Errorf("notion: failed to encode body params to JSON: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
req, err := c.newRequest(ctx, http.MethodPost, "/databases", body)
|
|
|
|
if err != nil {
|
|
|
|
return Database{}, fmt.Errorf("notion: invalid request: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := c.httpClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return Database{}, fmt.Errorf("notion: failed to make HTTP request: %w", err)
|
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
|
|
|
|
if res.StatusCode != http.StatusOK {
|
|
|
|
return Database{}, fmt.Errorf("notion: failed to create database: %w", parseErrorResponse(res))
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.NewDecoder(res.Body).Decode(&db)
|
|
|
|
if err != nil {
|
|
|
|
return Database{}, fmt.Errorf("notion: failed to parse HTTP response: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return db, nil
|
|
|
|
}
|
|
|
|
|
2021-12-20 12:11:03 +02:00
|
|
|
// UpdateDatabase updates a database.
|
|
|
|
// See: https://developers.notion.com/reference/update-a-database
|
|
|
|
func (c *Client) UpdateDatabase(ctx context.Context, databaseID string, params UpdateDatabaseParams) (updatedDB Database, err error) {
|
|
|
|
if err := params.Validate(); err != nil {
|
|
|
|
return Database{}, fmt.Errorf("notion: invalid database params: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
body := &bytes.Buffer{}
|
|
|
|
|
|
|
|
err = json.NewEncoder(body).Encode(params)
|
|
|
|
if err != nil {
|
|
|
|
return Database{}, fmt.Errorf("notion: failed to encode body params to JSON: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
req, err := c.newRequest(ctx, http.MethodPatch, "/databases/"+databaseID, body)
|
|
|
|
if err != nil {
|
|
|
|
return Database{}, fmt.Errorf("notion: invalid request: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := c.httpClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return Database{}, fmt.Errorf("notion: failed to make HTTP request: %w", err)
|
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
|
|
|
|
if res.StatusCode != http.StatusOK {
|
|
|
|
return Database{}, fmt.Errorf("notion: failed to update database: %w", parseErrorResponse(res))
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.NewDecoder(res.Body).Decode(&updatedDB)
|
|
|
|
if err != nil {
|
|
|
|
return Database{}, fmt.Errorf("notion: failed to parse HTTP response: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return updatedDB, nil
|
|
|
|
}
|
|
|
|
|
2021-05-15 00:19:30 +02:00
|
|
|
// FindPageByID fetches a page by ID.
|
|
|
|
// See: https://developers.notion.com/reference/get-page
|
|
|
|
func (c *Client) FindPageByID(ctx context.Context, id string) (page Page, err error) {
|
|
|
|
req, err := c.newRequest(ctx, http.MethodGet, "/pages/"+id, nil)
|
|
|
|
if err != nil {
|
|
|
|
return Page{}, fmt.Errorf("notion: invalid request: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := c.httpClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return Page{}, fmt.Errorf("notion: failed to make HTTP request: %w", err)
|
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
|
|
|
|
if res.StatusCode != http.StatusOK {
|
|
|
|
return Page{}, fmt.Errorf("notion: failed to find page: %w", parseErrorResponse(res))
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.NewDecoder(res.Body).Decode(&page)
|
|
|
|
if err != nil {
|
|
|
|
return Page{}, fmt.Errorf("notion: failed to parse HTTP response: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return page, nil
|
|
|
|
}
|
2021-05-15 13:42:01 +02:00
|
|
|
|
|
|
|
// CreatePage creates a new page in the specified database or as a child of an existing page.
|
|
|
|
// See: https://developers.notion.com/reference/post-page
|
|
|
|
func (c *Client) CreatePage(ctx context.Context, params CreatePageParams) (page Page, err error) {
|
|
|
|
if err := params.Validate(); err != nil {
|
|
|
|
return Page{}, fmt.Errorf("notion: invalid page params: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
body := &bytes.Buffer{}
|
|
|
|
|
|
|
|
err = json.NewEncoder(body).Encode(params)
|
|
|
|
if err != nil {
|
|
|
|
return Page{}, fmt.Errorf("notion: failed to encode body params to JSON: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
req, err := c.newRequest(ctx, http.MethodPost, "/pages", body)
|
|
|
|
if err != nil {
|
|
|
|
return Page{}, fmt.Errorf("notion: invalid request: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := c.httpClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return Page{}, fmt.Errorf("notion: failed to make HTTP request: %w", err)
|
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
|
|
|
|
if res.StatusCode != http.StatusOK {
|
|
|
|
return Page{}, fmt.Errorf("notion: failed to create page: %w", parseErrorResponse(res))
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.NewDecoder(res.Body).Decode(&page)
|
|
|
|
if err != nil {
|
|
|
|
return Page{}, fmt.Errorf("notion: failed to parse HTTP response: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return page, nil
|
|
|
|
}
|
2021-05-15 18:06:11 +02:00
|
|
|
|
|
|
|
// UpdatePageProps updates page property values for a page.
|
|
|
|
// See: https://developers.notion.com/reference/patch-page
|
|
|
|
func (c *Client) UpdatePageProps(ctx context.Context, pageID string, params UpdatePageParams) (page Page, err error) {
|
|
|
|
if err := params.Validate(); err != nil {
|
|
|
|
return Page{}, fmt.Errorf("notion: invalid page params: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
body := &bytes.Buffer{}
|
|
|
|
|
|
|
|
err = json.NewEncoder(body).Encode(params)
|
|
|
|
if err != nil {
|
|
|
|
return Page{}, fmt.Errorf("notion: failed to encode body params to JSON: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
req, err := c.newRequest(ctx, http.MethodPatch, "/pages/"+pageID, body)
|
|
|
|
if err != nil {
|
|
|
|
return Page{}, fmt.Errorf("notion: invalid request: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := c.httpClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return Page{}, fmt.Errorf("notion: failed to make HTTP request: %w", err)
|
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
|
|
|
|
if res.StatusCode != http.StatusOK {
|
|
|
|
return Page{}, fmt.Errorf("notion: failed to update page properties: %w", parseErrorResponse(res))
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.NewDecoder(res.Body).Decode(&page)
|
|
|
|
if err != nil {
|
|
|
|
return Page{}, fmt.Errorf("notion: failed to parse HTTP response: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return page, nil
|
|
|
|
}
|
2021-05-15 19:04:57 +02:00
|
|
|
|
|
|
|
// FindBlockChildrenByID returns a list of block children for a given block ID.
|
|
|
|
// See: https://developers.notion.com/reference/post-database-query
|
2021-05-15 20:50:47 +02:00
|
|
|
func (c *Client) FindBlockChildrenByID(ctx context.Context, blockID string, query *PaginationQuery) (result BlockChildrenResponse, err error) {
|
2021-05-15 20:17:21 +02:00
|
|
|
req, err := c.newRequest(ctx, http.MethodGet, fmt.Sprintf("/blocks/%v/children", blockID), nil)
|
2021-05-15 19:04:57 +02:00
|
|
|
if err != nil {
|
|
|
|
return BlockChildrenResponse{}, fmt.Errorf("notion: invalid request: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if query != nil {
|
|
|
|
q := url.Values{}
|
|
|
|
if query.StartCursor != "" {
|
|
|
|
q.Set("start_cursor", query.StartCursor)
|
|
|
|
}
|
|
|
|
if query.PageSize != 0 {
|
|
|
|
q.Set("page_size", strconv.Itoa(query.PageSize))
|
|
|
|
}
|
|
|
|
req.URL.RawQuery = q.Encode()
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := c.httpClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return BlockChildrenResponse{}, fmt.Errorf("notion: failed to make HTTP request: %w", err)
|
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
|
|
|
|
if res.StatusCode != http.StatusOK {
|
|
|
|
return BlockChildrenResponse{}, fmt.Errorf("notion: failed to find block children: %w", parseErrorResponse(res))
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.NewDecoder(res.Body).Decode(&result)
|
|
|
|
if err != nil {
|
|
|
|
return BlockChildrenResponse{}, fmt.Errorf("notion: failed to parse HTTP response: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|
2021-05-15 20:16:04 +02:00
|
|
|
|
|
|
|
// AppendBlockChildren appends child content (blocks) to an existing block.
|
|
|
|
// See: https://developers.notion.com/reference/patch-block-children
|
2021-12-20 18:01:06 +02:00
|
|
|
func (c *Client) AppendBlockChildren(ctx context.Context, blockID string, children []Block) (result BlockChildrenResponse, err error) {
|
2021-05-15 20:16:04 +02:00
|
|
|
type PostBody struct {
|
|
|
|
Children []Block `json:"children"`
|
|
|
|
}
|
|
|
|
|
|
|
|
dto := PostBody{children}
|
|
|
|
body := &bytes.Buffer{}
|
|
|
|
|
|
|
|
err = json.NewEncoder(body).Encode(dto)
|
|
|
|
if err != nil {
|
2021-12-20 18:01:06 +02:00
|
|
|
return BlockChildrenResponse{}, fmt.Errorf("notion: failed to encode body params to JSON: %w", err)
|
2021-05-15 20:16:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
req, err := c.newRequest(ctx, http.MethodPatch, fmt.Sprintf("/blocks/%v/children", blockID), body)
|
|
|
|
if err != nil {
|
2021-12-20 18:01:06 +02:00
|
|
|
return BlockChildrenResponse{}, fmt.Errorf("notion: invalid request: %w", err)
|
2021-05-15 20:16:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
res, err := c.httpClient.Do(req)
|
|
|
|
if err != nil {
|
2021-12-20 18:01:06 +02:00
|
|
|
return BlockChildrenResponse{}, fmt.Errorf("notion: failed to make HTTP request: %w", err)
|
2021-05-15 20:16:04 +02:00
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
|
|
|
|
if res.StatusCode != http.StatusOK {
|
2021-12-20 18:01:06 +02:00
|
|
|
return BlockChildrenResponse{}, fmt.Errorf("notion: failed to append block children: %w", parseErrorResponse(res))
|
2021-05-15 20:16:04 +02:00
|
|
|
}
|
|
|
|
|
2021-12-20 18:01:06 +02:00
|
|
|
err = json.NewDecoder(res.Body).Decode(&result)
|
2021-05-15 20:16:04 +02:00
|
|
|
if err != nil {
|
2021-12-20 18:01:06 +02:00
|
|
|
return BlockChildrenResponse{}, fmt.Errorf("notion: failed to parse HTTP response: %w", err)
|
2021-05-15 20:16:04 +02:00
|
|
|
}
|
|
|
|
|
2021-12-20 18:01:06 +02:00
|
|
|
return result, nil
|
2021-12-09 17:44:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// FindBlockByID returns a single of block for a given block ID.
|
|
|
|
// See: https://developers.notion.com/reference/retrieve-a-block
|
|
|
|
func (c *Client) FindBlockByID(ctx context.Context, blockID string) (block Block, err error) {
|
|
|
|
req, err := c.newRequest(ctx, http.MethodGet, fmt.Sprintf("/blocks/%v", blockID), nil)
|
|
|
|
if err != nil {
|
|
|
|
return Block{}, fmt.Errorf("notion: invalid request: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := c.httpClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return Block{}, fmt.Errorf("notion: failed to make HTTP request: %w", err)
|
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
|
|
|
|
if res.StatusCode != http.StatusOK {
|
|
|
|
return Block{}, fmt.Errorf("notion: failed to find block: %w", parseErrorResponse(res))
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.NewDecoder(res.Body).Decode(&block)
|
|
|
|
if err != nil {
|
|
|
|
return Block{}, fmt.Errorf("notion: failed to parse HTTP response: %w", err)
|
|
|
|
}
|
|
|
|
|
2021-05-15 20:16:04 +02:00
|
|
|
return block, nil
|
2021-12-18 15:19:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateBlock updates a block.
|
|
|
|
// See: https://developers.notion.com/reference/update-a-block
|
|
|
|
func (c *Client) UpdateBlock(ctx context.Context, blockID string, block Block) (updatedBlock Block, err error) {
|
|
|
|
body := &bytes.Buffer{}
|
|
|
|
|
|
|
|
err = json.NewEncoder(body).Encode(block)
|
|
|
|
if err != nil {
|
|
|
|
return Block{}, fmt.Errorf("notion: failed to encode body params to JSON: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
req, err := c.newRequest(ctx, http.MethodPatch, "/blocks/"+blockID, body)
|
|
|
|
if err != nil {
|
|
|
|
return Block{}, fmt.Errorf("notion: invalid request: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := c.httpClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return Block{}, fmt.Errorf("notion: failed to make HTTP request: %w", err)
|
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
|
|
|
|
if res.StatusCode != http.StatusOK {
|
|
|
|
return Block{}, fmt.Errorf("notion: failed to update block: %w", parseErrorResponse(res))
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.NewDecoder(res.Body).Decode(&updatedBlock)
|
|
|
|
if err != nil {
|
|
|
|
return Block{}, fmt.Errorf("notion: failed to parse HTTP response: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return updatedBlock, nil
|
2021-05-15 20:16:04 +02:00
|
|
|
}
|
2021-05-15 20:29:37 +02:00
|
|
|
|
|
|
|
// FindUserByID fetches a user by ID.
|
|
|
|
// See: https://developers.notion.com/reference/get-user
|
|
|
|
func (c *Client) FindUserByID(ctx context.Context, id string) (user User, err error) {
|
|
|
|
req, err := c.newRequest(ctx, http.MethodGet, "/users/"+id, nil)
|
|
|
|
if err != nil {
|
|
|
|
return User{}, fmt.Errorf("notion: invalid request: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := c.httpClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return User{}, fmt.Errorf("notion: failed to make HTTP request: %w", err)
|
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
|
|
|
|
if res.StatusCode != http.StatusOK {
|
|
|
|
return User{}, fmt.Errorf("notion: failed to find user: %w", parseErrorResponse(res))
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.NewDecoder(res.Body).Decode(&user)
|
|
|
|
if err != nil {
|
|
|
|
return User{}, fmt.Errorf("notion: failed to parse HTTP response: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return user, nil
|
|
|
|
}
|
2021-05-15 20:50:47 +02:00
|
|
|
|
|
|
|
// ListUsers returns a list of all users, and pagination metadata.
|
|
|
|
// See: https://developers.notion.com/reference/get-users
|
|
|
|
func (c *Client) ListUsers(ctx context.Context, query *PaginationQuery) (result ListUsersResponse, err error) {
|
|
|
|
req, err := c.newRequest(ctx, http.MethodGet, "/users", nil)
|
|
|
|
if err != nil {
|
|
|
|
return ListUsersResponse{}, fmt.Errorf("notion: invalid request: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if query != nil {
|
|
|
|
q := url.Values{}
|
|
|
|
if query.StartCursor != "" {
|
|
|
|
q.Set("start_cursor", query.StartCursor)
|
|
|
|
}
|
|
|
|
if query.PageSize != 0 {
|
|
|
|
q.Set("page_size", strconv.Itoa(query.PageSize))
|
|
|
|
}
|
|
|
|
req.URL.RawQuery = q.Encode()
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := c.httpClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return ListUsersResponse{}, fmt.Errorf("notion: failed to make HTTP request: %w", err)
|
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
|
|
|
|
if res.StatusCode != http.StatusOK {
|
|
|
|
return ListUsersResponse{}, fmt.Errorf("notion: failed to list users: %w", parseErrorResponse(res))
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.NewDecoder(res.Body).Decode(&result)
|
|
|
|
if err != nil {
|
|
|
|
return ListUsersResponse{}, fmt.Errorf("notion: failed to parse HTTP response: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|
2021-05-15 23:06:37 +02:00
|
|
|
|
|
|
|
// Search fetches all pages and child pages that are shared with the integration. Optionally uses query, filter and
|
|
|
|
// pagination options.
|
|
|
|
// See: https://developers.notion.com/reference/post-search
|
|
|
|
func (c *Client) Search(ctx context.Context, opts *SearchOpts) (result SearchResponse, err error) {
|
|
|
|
body := &bytes.Buffer{}
|
|
|
|
|
|
|
|
if opts != nil {
|
|
|
|
err = json.NewEncoder(body).Encode(opts)
|
|
|
|
if err != nil {
|
|
|
|
return SearchResponse{}, fmt.Errorf("notion: failed to encode filter to JSON: %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
req, err := c.newRequest(ctx, http.MethodPost, "/search", body)
|
|
|
|
if err != nil {
|
|
|
|
return SearchResponse{}, fmt.Errorf("notion: invalid request: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := c.httpClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return SearchResponse{}, fmt.Errorf("notion: failed to make HTTP request: %w", err)
|
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
|
|
|
|
if res.StatusCode != http.StatusOK {
|
|
|
|
return SearchResponse{}, fmt.Errorf("notion: failed to search: %w", parseErrorResponse(res))
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.NewDecoder(res.Body).Decode(&result)
|
|
|
|
if err != nil {
|
|
|
|
return SearchResponse{}, fmt.Errorf("notion: failed to parse HTTP response: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|