-
Notifications
You must be signed in to change notification settings - Fork 11
/
author.go
54 lines (45 loc) · 1.25 KB
/
author.go
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
49
50
51
52
53
54
package writeas
import (
"fmt"
"net/http"
)
type (
// Author represents a Write.as author.
Author struct {
User *User
Name string `json:"name"`
Slug string `json:"slug"`
}
// AuthorParams are used to create or update a Write.as author.
AuthorParams struct {
// Name is the public display name of the Author.
Name string `json:"name"`
// Slug is the optional slug for the Author.
Slug string `json:"slug"`
// OrgAlias is the alias of the organization the Author belongs to.
OrgAlias string `json:"-"`
}
)
// CreateContributor creates a new contributor on the given organization.
func (c *Client) CreateContributor(sp *AuthorParams) (*Author, error) {
if sp.OrgAlias == "" {
return nil, fmt.Errorf("AuthorParams.OrgAlias is required.")
}
a := &Author{}
env, err := c.post("/organizations/"+sp.OrgAlias+"/contributors", sp, a)
if err != nil {
return nil, err
}
var ok bool
if a, ok = env.Data.(*Author); !ok {
return nil, fmt.Errorf("Wrong data returned from API.")
}
status := env.Code
if status != http.StatusCreated {
if status == http.StatusBadRequest {
return nil, fmt.Errorf("Bad request: %s", env.ErrorMessage)
}
return nil, fmt.Errorf("Problem creating author: %d. %s\n", status, env.ErrorMessage)
}
return a, nil
}