|
| 1 | +package client |
| 2 | + |
| 3 | +import ( |
| 4 | + "encoding/json" |
| 5 | + "fmt" |
| 6 | + "net/http" |
| 7 | +) |
| 8 | + |
| 9 | +const ( |
| 10 | + ldapAPIEndpoint = "service/rest/beta/security/ldap" |
| 11 | +) |
| 12 | + |
| 13 | +// LDAP data structure |
| 14 | +type LDAP struct { |
| 15 | + AuthPassword string `json:"authPassword"` |
| 16 | + AuthRealm string `json:"authRealm,omitempty"` |
| 17 | + AuthSchema string `json:"authScheme"` |
| 18 | + AuthUserName string `json:"authUsername,omitempty"` |
| 19 | + ConnectionRetryDelaySeconds uint `json:"connectionRetryDelaySeconds"` |
| 20 | + ConnectionTimeoutSeconds uint `json:"connectionTimeoutSeconds"` |
| 21 | + GroupBaseDn string `json:"groupBaseDn,omitempty"` |
| 22 | + GroupIDAttribute string `json:"groupIdAttribute,omitempty"` |
| 23 | + GroupMemberAttribute string `json:"groupMemberAttribute,omitempty"` |
| 24 | + GroupMemberFormat string `json:"groupMemberFormat,omitempty"` |
| 25 | + GroupObjectClass string `json:"groupObjectClass,omitempty"` |
| 26 | + GroupSubtree bool `json:"groupSubtree,omitempty"` |
| 27 | + GroupType string `json:"groupType"` |
| 28 | + Host string `json:"host"` |
| 29 | + ID string `json:"id"` |
| 30 | + LDAPGroupsAsRoles bool `json:"ldapGroupsAsRoles,omitempty"` |
| 31 | + MaxIncidentCount uint `json:"maxIncidentsCount"` |
| 32 | + Name string `json:"name"` |
| 33 | + Port uint `json:"port"` |
| 34 | + Protocol string `json:"protocol"` |
| 35 | + SearchBase string `json:"searchBase"` |
| 36 | + UseBaseCon string `json:"userBaseDn,omitempty"` |
| 37 | + UseSubtree bool `json:"userSubtree,omitempty"` |
| 38 | + UseTrustStore bool `json:"useTrustStore,omitempty"` |
| 39 | + UserEmailAddressAttribute string `json:"userEmailAddressAttribute,omitempty"` |
| 40 | + UserIDAttribute string `json:"userIdAttribute,omitempty"` |
| 41 | + UserLDAPFilter string `json:"userLdapFilter,omitempty"` |
| 42 | + UserMemberOffAttribute string `json:"userMemberOfAttribute,omitempty"` |
| 43 | + UserObjectClass string `json:"userObjectClass,omitempty"` |
| 44 | + UserPasswordAttribute string `json:"userPasswordAttribute,omitempty"` |
| 45 | + UserRealNameAttribute string `json:"userRealNameAttribute,omitempty"` |
| 46 | +} |
| 47 | + |
| 48 | +func (c *client) LDAPList() ([]LDAP, error) { |
| 49 | + body, resp, err := c.Get(ldapAPIEndpoint, nil) |
| 50 | + if err != nil { |
| 51 | + return nil, err |
| 52 | + } |
| 53 | + |
| 54 | + if resp.StatusCode != http.StatusOK { |
| 55 | + return nil, fmt.Errorf("could not get LDAP server: HTTP: %d, %v", resp.StatusCode, string(body)) |
| 56 | + } |
| 57 | + |
| 58 | + var result []LDAP |
| 59 | + if err := json.Unmarshal(body, &result); err != nil { |
| 60 | + return nil, fmt.Errorf("could not unmarshal LDAP server: %v", err) |
| 61 | + } |
| 62 | + |
| 63 | + return result, nil |
| 64 | +} |
| 65 | + |
| 66 | +func (c *client) LDAPCreate(ldap LDAP) error { |
| 67 | + ioReader, err := jsonMarshalInterfaceToIOReader(ldap) |
| 68 | + if err != nil { |
| 69 | + return err |
| 70 | + } |
| 71 | + |
| 72 | + body, resp, err := c.Post(ldapAPIEndpoint, ioReader) |
| 73 | + if err != nil { |
| 74 | + return err |
| 75 | + } |
| 76 | + |
| 77 | + if resp.StatusCode != http.StatusCreated { |
| 78 | + return fmt.Errorf("could not create LDAP server: HTTP: %d, %v", resp.StatusCode, string(body)) |
| 79 | + } |
| 80 | + |
| 81 | + return nil |
| 82 | +} |
| 83 | + |
| 84 | +func (c *client) LDAPRead(name string) (*LDAP, error) { |
| 85 | + body, resp, err := c.Get(fmt.Sprintf("%s/%s", ldapAPIEndpoint, name), nil) |
| 86 | + if err != nil { |
| 87 | + return nil, err |
| 88 | + } |
| 89 | + |
| 90 | + if resp.StatusCode != http.StatusOK { |
| 91 | + return nil, fmt.Errorf("could not get LDAP server '%s': HTTP: %d, %v", name, resp.StatusCode, string(body)) |
| 92 | + } |
| 93 | + |
| 94 | + ldapServer := &LDAP{} |
| 95 | + if err := json.Unmarshal(body, ldapServer); err != nil { |
| 96 | + return nil, fmt.Errorf("could not unmarshal LDAP server '%s': %v", name, err) |
| 97 | + } |
| 98 | + |
| 99 | + return ldapServer, nil |
| 100 | +} |
| 101 | + |
| 102 | +func (c *client) LDAPUpdate(name string, ldap LDAP) error { |
| 103 | + ioReader, err := jsonMarshalInterfaceToIOReader(ldap) |
| 104 | + if err != nil { |
| 105 | + return err |
| 106 | + } |
| 107 | + |
| 108 | + body, resp, err := c.Put(fmt.Sprintf("%s/%s", ldapAPIEndpoint, name), ioReader) |
| 109 | + if err != nil { |
| 110 | + return err |
| 111 | + } |
| 112 | + |
| 113 | + if resp.StatusCode != http.StatusNoContent { |
| 114 | + return fmt.Errorf("could not update LDAP server `%s`: HTTP: %d, :%v", name, resp.StatusCode, string(body)) |
| 115 | + } |
| 116 | + |
| 117 | + return nil |
| 118 | +} |
| 119 | + |
| 120 | +func (c *client) LDAPDelete(name string) error { |
| 121 | + body, resp, err := c.Delete(fmt.Sprintf("%s/%s", ldapAPIEndpoint, name)) |
| 122 | + if err != nil { |
| 123 | + return err |
| 124 | + } |
| 125 | + |
| 126 | + if resp.StatusCode != http.StatusNoContent { |
| 127 | + return fmt.Errorf("could not delete LDAP server '%s': HTTP: %d, %v", name, resp.StatusCode, string(body)) |
| 128 | + } |
| 129 | + |
| 130 | + return nil |
| 131 | +} |
0 commit comments