|
| 1 | +/* |
| 2 | +Copyright 2020 The KubeSphere Authors. |
| 3 | +
|
| 4 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +you may not use this file except in compliance with the License. |
| 6 | +You may obtain a copy of the License at |
| 7 | +
|
| 8 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +
|
| 10 | +Unless required by applicable law or agreed to in writing, software |
| 11 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +See the License for the specific language governing permissions and |
| 14 | +limitations under the License. |
| 15 | +*/ |
| 16 | + |
| 17 | +package v1alpha2 |
| 18 | + |
| 19 | +import ( |
| 20 | + "context" |
| 21 | + |
| 22 | + resty "github.com/go-resty/resty/v2" |
| 23 | +) |
| 24 | + |
| 25 | +type RoleBindingsGetter interface { |
| 26 | + RoleBindings() RoleBindingInterface |
| 27 | +} |
| 28 | + |
| 29 | +type RoleBindingInterface interface { |
| 30 | + CreateRoleBinding(ctx context.Context, namespace, role, group string) (string, error) |
| 31 | + CreateWorkspaceRoleBinding(ctx context.Context, namespace, role, group string) (string, error) |
| 32 | +} |
| 33 | + |
| 34 | +type rolebindings struct { |
| 35 | + client *resty.Client |
| 36 | +} |
| 37 | + |
| 38 | +func newRoleBindings(c *IamV1alpha2Client) *rolebindings { |
| 39 | + return &rolebindings{ |
| 40 | + client: c.client, |
| 41 | + } |
| 42 | +} |
| 43 | + |
| 44 | +// CreateRoleBinding assembling of a rolebinding object and creates it. Returns the server's response and an error, if there is any. |
| 45 | +func (c *rolebindings) CreateRoleBinding(ctx context.Context, namespace, role, group string) (result string, err error) { |
| 46 | + |
| 47 | + roles := []map[string]interface{}{{ |
| 48 | + "subjects": []map[string]interface{}{ |
| 49 | + { |
| 50 | + "kind": "Group", |
| 51 | + "apiGroup": "rbac.authorization.k8s.io", |
| 52 | + "name": group, |
| 53 | + }, |
| 54 | + }, |
| 55 | + "roleRef": map[string]interface{}{ |
| 56 | + "apiGroup": "rbac.authorization.k8s.io", |
| 57 | + "kind": "Role", |
| 58 | + "name": role, |
| 59 | + }, |
| 60 | + }} |
| 61 | + |
| 62 | + resp, err := c.client.R(). |
| 63 | + SetHeader("Content-Type", "application/json"). |
| 64 | + SetBody(roles). |
| 65 | + SetPathParams(map[string]string{ |
| 66 | + "namespace": namespace, |
| 67 | + }). |
| 68 | + Post("/kapis/iam.kubesphere.io/v1alpha2/namespaces/{namespace}/rolebindings") |
| 69 | + return resp.String(), err |
| 70 | +} |
| 71 | + |
| 72 | +// CreateWorkspaceRoleBinding assembling of a workspacerolebinding object and creates it. Returns the server's response, and an error, if there is any. |
| 73 | +func (c *rolebindings) CreateWorkspaceRoleBinding(ctx context.Context, workspace, role, group string) (result string, err error) { |
| 74 | + |
| 75 | + roles := []map[string]interface{}{{ |
| 76 | + "subjects": []map[string]interface{}{ |
| 77 | + { |
| 78 | + "kind": "Group", |
| 79 | + "apiGroup": "rbac.authorization.k8s.io", |
| 80 | + "name": group, |
| 81 | + }, |
| 82 | + }, |
| 83 | + "roleRef": map[string]interface{}{ |
| 84 | + "apiGroup": "iam.kubesphere.io/v1alpha2", |
| 85 | + "kind": "WorkspaceRoleBinding", |
| 86 | + "name": role, |
| 87 | + }, |
| 88 | + }} |
| 89 | + |
| 90 | + resp, err := c.client.R(). |
| 91 | + SetHeader("Content-Type", "application/json"). |
| 92 | + SetBody(roles). |
| 93 | + SetPathParams(map[string]string{ |
| 94 | + "workspace": workspace, |
| 95 | + }). |
| 96 | + Post("/kapis/iam.kubesphere.io/v1alpha2/workspaces/{workspace}/workspacerolebindings/") |
| 97 | + return resp.String(), err |
| 98 | +} |
0 commit comments