-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathlicense.py
More file actions
326 lines (256 loc) · 9.67 KB
/
license.py
File metadata and controls
326 lines (256 loc) · 9.67 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
"""CLI/Commands - create, retrieve, update or delete license policies."""
import json
import click
from ....core.api import orgs as api
from ... import command, decorators, utils, validators
from ...exceptions import handle_api_exceptions
from ...utils import (
fmt_bool,
fmt_datetime,
maybe_spinner,
maybe_truncate_list,
maybe_truncate_string,
)
from .command import policy
def print_license_policies(policies):
"""Print license policies as a table or output in another format."""
headers = [
"Name",
"Description",
"Allow Unknown Licenses",
"Quarantine On Violation",
"Package Query",
"SPDX Identifiers",
"Created",
"Updated",
"Identifier",
]
rows = [
[
click.style(policy["name"], fg="cyan"),
click.style(policy["description"], fg="yellow"),
click.style(fmt_bool(policy["allow_unknown_licenses"]), fg="yellow"),
click.style(fmt_bool(policy["on_violation_quarantine"]), fg="yellow"),
click.style(
str(maybe_truncate_string(policy["package_query_string"])),
fg="yellow",
),
click.style(
str(maybe_truncate_list(policy["spdx_identifiers"])),
fg="blue",
),
click.style(fmt_datetime(policy["created_at"]), fg="blue"),
click.style(fmt_datetime(policy["updated_at"]), fg="blue"),
click.style(policy["slug_perm"], fg="green"),
]
for policy in policies
]
click.echo()
utils.pretty_print_table(headers, rows)
click.echo()
num_results = len(rows)
list_suffix = "license polic%s" % ("y" if num_results == 1 else "ies")
utils.pretty_print_list_info(num_results=num_results, suffix=list_suffix)
@policy.group(cls=command.AliasGroup, name="license", aliases=[])
@decorators.common_cli_config_options
@decorators.common_cli_output_options
@decorators.common_api_auth_options
@decorators.initialise_api
@click.pass_context
def licence(*args, **kwargs):
"""
Manage license policies for an organization.
See the help for subcommands for more information on each.
"""
@licence.command(name="list", aliases=["ls"])
@decorators.common_cli_config_options
@decorators.common_cli_list_options
@decorators.common_cli_output_options
@decorators.common_api_auth_options
@decorators.initialise_api
@click.argument(
"owner", metavar="OWNER", callback=validators.validate_owner, required=True
)
@click.pass_context
def ls(ctx, opts, owner, page, page_size):
"""
List license policies.
This requires appropriate permissions for the owner (a member of the
organization and a valid API key).
- OWNER: Specify the OWNER namespace (i.e. org)
Example: 'your-org'
Full CLI example:
$ cloudsmith policy license list your-org
"""
owner = owner[0]
# Use stderr for messages if the output is something else (e.g. # JSON)
use_stderr = opts.output != "pretty"
click.echo("Getting license policies ... ", nl=False, err=use_stderr)
context_msg = "Failed to get license policies!"
with handle_api_exceptions(ctx, opts=opts, context_msg=context_msg):
with maybe_spinner(opts):
policies, page_info = api.list_license_policies(
owner=owner, page=page, page_size=page_size
)
click.secho("OK", fg="green", err=use_stderr)
if utils.maybe_print_as_json(opts, policies, page_info):
return
print_license_policies(policies)
@licence.command(aliases=["new"])
@decorators.common_cli_config_options
@decorators.common_cli_output_options
@decorators.common_api_auth_options
@decorators.initialise_api
@click.argument("owner", default=None, required=True)
@click.argument("policy_config_file", type=click.File("rb"), required=True)
@click.pass_context
def create(ctx, opts, owner, policy_config_file):
"""
Create a new license policy in a namespace.
- OWNER: Specify the OWNER namespace (i.e. user or org) where you want
to create a license policy.
Example: 'your-org'
- POLICY_CONFIG_FILE: Config file specifying the settings for the
license policy to be created.
\b
Example:
{
"name": "your-license-policy",
"description": "your license policy description",
"spdx_identifiers" : ["your_licenses"],
"package_query_string" : "format:python AND downloads:>50",
"allow_unknown_licenses": false,
"quarantine_on_violation": true
}
Full CLI example:
$ cloudsmith policy license create your-org policy-config-file.json
"""
# Use stderr for messages if the output is something else (e.g. JSON)
use_stderr = opts.output != "pretty"
policy_config = json.load(policy_config_file)
policy_name = policy_config.get("name", None)
if policy_name is None:
raise click.BadParameter(
"Name is a required field for creating a license policy.", param="name"
)
spdx_identifiers = policy_config.get("spdx_identifiers", None)
if spdx_identifiers is None:
raise click.BadParameter(
"SPDX Identifiers is a required field for creating a license policy.",
param="spdx_identifiers",
)
click.secho(
"Creating %(name)s license policy for the %(owner)s namespace ..."
% {
"name": click.style(policy_name, bold=True),
"owner": click.style(owner, bold=True),
},
nl=False,
err=use_stderr,
)
context_msg = "Failed to create the license policy!"
with handle_api_exceptions(ctx, opts=opts, context_msg=context_msg):
with maybe_spinner(opts):
policies = [api.create_license_policy(owner, policy_config)]
click.secho("OK", fg="green", err=use_stderr)
if utils.maybe_print_as_json(opts, policies):
return
print_license_policies(policies)
@licence.command()
@decorators.common_cli_config_options
@decorators.common_cli_output_options
@decorators.common_api_auth_options
@decorators.initialise_api
@click.argument("owner", default=None, required=True)
@click.argument("identifier", default=None, required=True)
@click.argument("policy_config_file", type=click.File("rb"), required=True)
@click.pass_context
def update(ctx, opts, owner, identifier, policy_config_file):
"""
Update a license policy.
- OWNER: Specify the OWNER namespace (i.e. user or org) where you want
to update a license policy.
Example: 'your-org'
- IDENTIFIER: Specify the license policy IDENTIFIER (i.e. slug_perm)
for the license policy which you wish to update.
Example: 'your-license-policy'
- POLICY_CONFIG_FILE: Config file specifying the settings for the
license policy to be updated.
\b
Example:
{
"name": "your-license-policy",
"description": "your license policy description",
"spdx_identifiers" : ["your_licenses"],
"package_query_string" : "format:python AND downloads:>50",
"allow_unknown_licenses": false,
"quarantine_on_violation": true
}
Full CLI example:
$ cloudsmith policy license update your-org your-license-policy policy-config-file.json
"""
# Use stderr for message if the output is something else (e.g. JSON)
use_stderr = opts.output != "pretty"
policy_config = json.load(policy_config_file)
click.secho(
"Updating %(slug_perm)s license policy in the %(owner)s namespace ..."
% {
"slug_perm": click.style(identifier, bold=True),
"owner": click.style(owner, bold=True),
},
nl=False,
err=use_stderr,
)
context_msg = "Failed to update the license policy!"
with handle_api_exceptions(ctx, opts=opts, context_msg=context_msg):
with maybe_spinner(opts):
policies = [api.update_license_policy(owner, identifier, policy_config)]
click.secho("OK", fg="green", err=use_stderr)
if utils.maybe_print_as_json(opts, policies):
return
print_license_policies(policies)
@licence.command(aliases=["rm"])
@decorators.common_cli_config_options
@decorators.common_cli_output_options
@decorators.common_api_auth_options
@decorators.initialise_api
@click.argument("owner", metavar="OWNER")
@click.argument("identifier", default=None, required=True)
@click.option(
"-y",
"--yes",
default=False,
is_flag=True,
help="Assume yes as default answer to questions (this is dangerous!)",
)
@click.pass_context
def delete(ctx, opts, owner, identifier, yes):
"""
Delete a license policy from a namespace.
- OWNER: Specify the OWNER namespace (i.e. org).
Example: 'your-org'
- IDENTIFIER: Specify the license policy IDENTIFIER (i.e. slug_perm)
for the license policy which you wish to delete.
Example: 'your-license-policy'
Full CLI example:
$ cloudsmith policy license delete your-org your-license-policy
"""
delete_args = {
"namespace": click.style(owner, bold=True),
"slug_perm": click.style(identifier, bold=True),
}
prompt = (
"delete the %(slug_perm)s license policy from the %(namespace)s namespace"
% delete_args
)
if not utils.confirm_operation(prompt, assume_yes=yes):
return
click.secho(
"Deleting %(slug_perm)s from the %(namespace)s namespace ... " % delete_args,
nl=False,
)
context_msg = "Failed to delete the license policy!"
with handle_api_exceptions(ctx, opts=opts, context_msg=context_msg):
with maybe_spinner(opts):
api.delete_license_policy(owner=owner, slug_perm=identifier)
click.secho("OK", fg="green")