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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
|
# Salsa configuration (inherits from Devscripts::Config)
package Devscripts::Salsa::Config;
use strict;
use Devscripts::Output;
use Moo;
extends 'Devscripts::Config';
# Declare accessors for each option
# Source : ./lib/Devscripts/Salsa/Config.pm:use constant keys
# command & private_token
# Skipping: info
# Note : [Salsa = GitLab] jobs = builds, info = prompt, token = private_token
foreach (qw(
command private_token
chdir cache_file no_cache path yes no_fail verbose debug
user user_id group group_id token token_file
all all_archived archived skip skip_file no_skip
analytics auto_devops container environments feature_flags forks
infrastructure issues jobs lfs monitor mr packages pages releases
repo request_access requirements security_compliance service_desk snippets
wiki
avatar_path desc desc_pattern
email disable_email email_recipient
irc_channel
irker disable_irker irker_host irker_port
kgb disable_kgb kgb_options
tagpending disable_tagpending
rename_head source_branch dest_branch
enable_remove_branch disable_remove_branch
build_timeout ci_config_path
schedule_desc schedule_ref schedule_cron schedule_tz schedule_enable
schedule_disable schedule_run schedule_delete
mr_allow_squash mr_desc mr_dst_branch mr_dst_project
mr_remove_source_branch mr_src_branch mr_src_project mr_title
api_url git_server_url irker_server_url kgb_server_url
tagpending_server_url
)
) {
has $_ => (is => 'rw');
}
my $cacheDir;
our @kgbOpt = qw(
push_events issues_events confidential_issues_events
confidential_comments_events merge_requests_events tag_push_events
note_events job_events pipeline_events wiki_page_events
confidential_note_events enable_ssl_verification
);
BEGIN {
$cacheDir = $ENV{XDG_CACHE_HOME} || $ENV{HOME} . '/.cache';
}
# Options
use constant keys => [
# General salsa
[
'C|chdir=s', undef,
sub { return (chdir($_[1]) ? 1 : (0, "$_[1] doesn't exist")) }
],
[
'cache-file',
'SALSA_CACHE_FILE',
sub {
$_[0]->cache_file($_[1] ? $_[1] : undef);
},
"$cacheDir/salsa.json"
],
[
'no-cache',
'SALSA_NO_CACHE',
sub {
$_[0]->cache_file(undef)
if ($_[1] !~ /^(?:no|0+)$/i);
return 1;
}
],
[
'path=s',
'SALSA_REPO_PATH',
sub {
$_ = $_[1];
s#/*(.*)/*#$1#;
$_[0]->path($_);
return /^[\w\d\-]+$/ ? 1 : (0, "Bad path $_");
}
],
# Responses
['yes!', 'SALSA_YES', sub { info(1, "SALSA_YES", @_) }],
['no-fail', 'SALSA_NO_FAIL', 'bool'],
# Output
['verbose!', 'SALSA_VERBOSE', sub { $verbose = 1 }],
['debug', undef, sub { $verbose = 2 }],
['info|i', 'SALSA_INFO', sub { info(-1, 'SALSA_INFO', @_) }],
# General GitLab
['user=s', 'SALSA_USER', qr/^[\-\w]+$/],
['user-id=s', 'SALSA_USER_ID', qr/^\d+$/],
['group=s', 'SALSA_GROUP', qr/^[\/\-\w]+$/],
['group-id=s', 'SALSA_GROUP_ID', qr/^\d+$/],
['token', 'SALSA_TOKEN', sub { $_[0]->private_token($_[1]) }],
[
'token-file',
'SALSA_TOKEN_FILE',
sub {
my ($self, $v) = @_;
return (0, "Unable to open token file") unless (-r $v);
open F, $v;
my $s = join '', <F>;
close F;
if ($s
=~ m/^[^#]*(?:SALSA_(?:PRIVATE_)?TOKEN)\s*=\s*(["'])?([-\w]+)\1?$/m
) {
$self->private_token($2);
return 1;
} else {
return (0, "No token found in file $v");
}
}
],
# List/search
['all'],
['all-archived'],
['archived!', 'SALSA_ARCHIVED', 'bool', 0],
['skip=s', 'SALSA_SKIP', undef, sub { [] }],
[
'skip-file=s',
'SALSA_SKIP_FILE',
sub {
return 1 unless $_[1];
return (0, "Unable to read $_[1]") unless (-r $_[1]);
open my $fh, $_[1];
push @{ $_[0]->skip }, (map { chomp $_; ($_ ? $_ : ()) } <$fh>);
return 1;
}
],
['no-skip', undef, sub { $_[0]->skip([]); $_[0]->skip_file(undef); }],
# Features
[
'analytics=s', 'SALSA_ENABLE_ANALYTICS',
qr/y(es)?|true|enabled?|private|no?|false|disabled?/
],
[
'auto-devops=s',
'SALSA_ENABLE_AUTO_DEVOPS',
qr/y(es)?|true|enabled?|1|no?|false|disabled?|0/
],
[
'container=s', 'SALSA_ENABLE_CONTAINER',
qr/y(es)?|true|enabled?|private|no?|false|disabled?/
],
[
'environments=s',
'SALSA_ENABLE_ENVIRONMENTS',
qr/y(es)?|true|enabled?|private|no?|false|disabled?/
],
[
'feature-flags=s',
'SALSA_ENABLE_FEATURE_FLAGS',
qr/y(es)?|true|enabled?|private|no?|false|disabled?/
],
[
'forks=s', 'SALSA_ENABLE_FORKS',
qr/y(es)?|true|enabled?|private|no?|false|disabled?/
],
[
'infrastructure=s',
'SALSA_ENABLE_INFRASTRUCTURE',
qr/y(es)?|true|enabled?|private|no?|false|disabled?/
],
[
'issues=s', 'SALSA_ENABLE_ISSUES',
qr/y(es)?|true|enabled?|private|no?|false|disabled?/
],
# Renamed terminology, kept for legacy: jobs == builds_access_level (ENABLE_JOBS -> ENABLE_BUILD)
[
'jobs=s', 'SALSA_ENABLE_JOBS',
qr/y(es)?|true|enabled?|private|no?|false|disabled?/
],
[
'lfs=s', 'SALSA_ENABLE_LFS',
qr/y(es)?|true|enabled?|1|no?|false|disabled?|0/
],
[
'monitor=s', 'SALSA_ENABLE_MONITOR',
qr/y(es)?|true|enabled?|private|no?|false|disabled?/
],
[
'mr=s', 'SALSA_ENABLE_MR',
qr/y(es)?|true|enabled?|private|no?|false|disabled?/
],
[
'packages=s', 'SALSA_ENABLE_PACKAGES',
qr/y(es)?|true|enabled?|1|no?|false|disabled?|0/
],
[
'pages=s', 'SALSA_ENABLE_PAGES',
qr/y(es)?|true|enabled?|private|no?|false|disabled?/
],
[
'releases=s', 'SALSA_ENABLE_RELEASES',
qr/y(es)?|true|enabled?|private|no?|false|disabled?/
],
[
'repo=s', 'SALSA_ENABLE_REPO',
qr/y(es)?|true|enabled?|private|no?|false|disabled?/
],
[
'request-access=s',
'SALSA_REQUEST_ACCESS',
qr/y(es)?|true|enabled?|1|no?|false|disabled?|0/
],
[
'requirements=s',
'SALSA_ENABLE_REQUIREMENTS',
qr/y(es)?|true|enabled?|private|no?|false|disabled?/
],
[
'security-compliance=s',
'SALSA_ENABLE_SECURITY_COMPLIANCE',
qr/y(es)?|true|enabled?|private|no?|false|disabled?/
],
[
'service-desk=s',
'SALSA_ENABLE_SERVICE_DESK',
qr/y(es)?|true|enabled?|1|no?|false|disabled?|0/
],
[
'snippets=s', 'SALSA_ENABLE_SNIPPETS',
qr/y(es)?|true|enabled?|private|no?|false|disabled?/
],
[
'wiki=s', 'SALSA_ENABLE_WIKI',
qr/y(es)?|true|enabled?|private|no?|false|disabled?/
],
# Branding
['avatar-path=s', 'SALSA_AVATAR_PATH', undef],
['desc!', 'SALSA_DESC', 'bool'],
['desc-pattern=s', 'SALSA_DESC_PATTERN', qr/\w/, 'Debian package %p'],
# Notification
[
'email!', undef,
sub { !$_[1] or $_[0]->enable('yes', 'email', 'disable_email'); }
],
[
'disable-email!', undef,
sub { !$_[1] or $_[0]->enable('no', 'email', 'disable_email'); }
],
[
undef, 'SALSA_EMAIL',
sub { $_[0]->enable($_[1], 'email', 'disable_email'); }
],
['email-recipient=s', 'SALSA_EMAIL_RECIPIENTS', undef, sub { [] }],
['irc-channel|irc=s', 'SALSA_IRC_CHANNEL', undef, sub { [] }],
[
'irker!', undef,
sub { !$_[1] or $_[0]->enable('yes', 'irker', 'disable_irker'); }
],
[
'disable-irker!', undef,
sub { !$_[1] or $_[0]->enable('no', 'irker', 'disable_irker'); }
],
[
undef, 'SALSA_IRKER',
sub { $_[0]->enable($_[1], 'irker', 'disable_irker'); }
],
['irker-host=s', 'SALSA_IRKER_HOST', undef, 'ruprecht.snow-crash.org'],
['irker-port=s', 'SALSA_IRKER_PORT', qr/^\d*$/],
[
'kgb!', undef,
sub { !$_[1] or $_[0]->enable('yes', 'kgb', 'disable_kgb'); }
],
[
'disable-kgb!', undef,
sub { !$_[1] or $_[0]->enable('no', 'kgb', 'disable_kgb'); }
],
[undef, 'SALSA_KGB', sub { $_[0]->enable($_[1], 'kgb', 'disable_kgb'); }],
[
'kgb-options=s',
'SALSA_KGB_OPTIONS',
qr/\w/,
'push_events,issues_events,merge_requests_events,tag_push_events,'
. 'note_events,pipeline_events,wiki_page_events,'
. 'enable_ssl_verification'
],
[
'tagpending!',
undef,
sub {
!$_[1]
or $_[0]->enable('yes', 'tagpending', 'disable_tagpending');
}
],
[
'disable-tagpending!',
undef,
sub {
!$_[1] or $_[0]->enable('no', 'tagpending', 'disable_tagpending');
}
],
[
undef, 'SALSA_TAGPENDING',
sub { $_[0]->enable($_[1], 'tagpending', 'disable_tagpending'); }
],
# Branch
['rename-head!', 'SALSA_RENAME_HEAD', 'bool'],
['source-branch=s', 'SALSA_SOURCE_BRANCH', undef, 'master'],
['dest-branch=s', 'SALSA_DEST_BRANCH', undef, 'debian/master'],
[
'enable-remove-source-branch!',
undef,
sub {
!$_[1]
or $_[0]
->enable('yes', 'enable_remove_branch', 'disable_remove_branch');
}
],
[
'disable-remove-source-branch!',
undef,
sub {
!$_[1]
or $_[0]
->enable('no', 'enable_remove_branch', 'disable_remove_branch');
}
],
[
undef,
'SALSA_REMOVE_SOURCE_BRANCH',
sub {
$_[0]
->enable($_[1], 'enable_remove_branch', 'disable_remove_branch');
}
],
# Merge requests
['mr-allow-squash!', 'SALSA_MR_ALLOW_SQUASH', 'bool', 1],
['mr-desc=s'],
['mr-dst-branch=s', undef, undef, 'master'],
['mr-dst-project=s'],
['mr-remove-source-branch!', 'SALSA_MR_REMOVE_SOURCE_BRANCH', 'bool', 0],
['mr-src-branch=s'],
['mr-src-project=s'],
['mr-title=s'],
# CI
['build-timeout=s', 'SALSA_BUILD_TIMEOUT', qr/^\d+$/, '3600'],
['ci-config-path=s', 'SALSA_CI_CONFIG_PATH', qr/\./],
# Pipeline schedules
['schedule-desc=s', 'SALSA_SCHEDULE_DESC', qr/\w/],
['schedule-ref=s', 'SALSA_SCHEDULE_REF'],
['schedule-cron=s', 'SALSA_SCHEDULE_CRON'],
['schedule-tz=s', 'SALSA_SCHEDULE_TZ'],
['schedule-enable!', 'SALSA_SCHEDULE_ENABLE', 'bool'],
['schedule-disable!', 'SALSA_SCHEDULE_DISABLE', 'bool'],
['schedule-run!', 'SALSA_SCHEDULE_RUN', 'bool'],
['schedule-delete!', 'SALSA_SCHEDULE_DELETE', 'bool'],
# Manage other GitLab instances
[
'api-url=s', 'SALSA_API_URL',
qr#^https?://#, 'https://salsa.debian.org/api/v4'
],
[
'git-server-url=s', 'SALSA_GIT_SERVER_URL',
qr/^\S+\@\S+/, 'git@salsa.debian.org:'
],
[
'irker-server-url=s', 'SALSA_IRKER_SERVER_URL',
qr'^ircs?://', 'ircs://irc.oftc.net:6697/'
],
[
'kgb-server-url=s', 'SALSA_KGB_SERVER_URL',
qr'^https?://', 'https://kgb.debian.net/webhook/?channel='
],
[
'tagpending-server-url=s',
'SALSA_TAGPENDING_SERVER_URL',
qr'^https?://',
'https://webhook.salsa.debian.org/tagpending/'
],
];
# Consistency rules
use constant rules => [
# Reject unless token exists
sub {
return (1,
"SALSA_TOKEN not set in configuration files. Some commands may fail"
) unless ($_[0]->private_token);
},
# Get command
sub {
return (0, "No command given, aborting") unless (@ARGV);
$_[0]->command(shift @ARGV);
return (0, "Malformed command: " . $_[0]->command)
unless ($_[0]->command =~ /^[a-z_]+$/);
return 1;
},
sub {
if ( ($_[0]->group or $_[0]->group_id)
and ($_[0]->user_id or $_[0]->user)) {
ds_warn "Both --user-id and --group-id are set, ignore --group-id";
$_[0]->group(undef);
$_[0]->group_id(undef);
}
return 1;
},
sub {
if ($_[0]->group and $_[0]->group_id) {
ds_warn "Both --group-id and --group are set, ignore --group";
$_[0]->group(undef);
}
return 1;
},
sub {
if ($_[0]->user and $_[0]->user_id) {
ds_warn "Both --user-id and --user are set, ignore --user";
$_[0]->user(undef);
}
return 1;
},
sub {
if ($_[0]->email and not @{ $_[0]->email_recipient }) {
return (0, '--email-recipient needed with --email');
}
return 1;
},
sub {
if (@{ $_[0]->irc_channel }) {
foreach (@{ $_[0]->irc_channel }) {
if (/^#/) {
return (1,
"# found in --irc-channel, assuming double hash is wanted"
);
}
}
if ($_[0]->irc_channel->[1] and $_[0]->kgb) {
return (0, "Only one IRC channel is accepted with --kgb");
}
}
return 1;
},
sub {
$_[0]->kgb_options([sort split ',\s*', $_[0]->kgb_options]);
my @err;
foreach my $o (@{ $_[0]->kgb_options }) {
unless (grep { $_ eq $o } @kgbOpt) {
push @err, $o;
}
}
return (0, "Unknown KGB options: " . join(', ', @err))
if @err;
return 1;
},
];
sub usage {
# Source: ./scripts/salsa.pl:=head1 SYNOPSIS
# ./lib/Devscripts/Salsa.pm:sub run -> $ ls ./lib/Devscripts/Salsa/*.pm
print <<END;
usage: salsa <command> <parameters> <options>
Most used commands for managing users and groups:
- add_user : Add a user to a group
- delete_user : Remove a user from a group
- search_groups : Search for a group using given string
- search_users : Search for a user using given string
- update_user : Update a user's role in a group
- whoami : Gives information on the token owner
Most used commands for managing repositories:
- checkout : Clone a project's repository in current directory
- fork : Fork a project
- last_ci_status : Displays the last continuous integration result
- mr : Creates a merge request
- schedules : Lists current pipeline schedule items
- push_repo : Push local git repository to upstream repository
- search_projects: Search for a project using given string
- update_projects: Configure project(s) configuration
- update_safe : Shows differences before running update_projects
See salsa(1) manpage for more.
END
}
sub info {
my ($num, $key, undef, $nv) = @_;
$nv = (
$nv =~ /^yes|1$/ ? $num
: $nv =~ /^no|0$/i ? 0
: return (0, "Bad $key value"));
$ds_yes = $nv;
}
sub enable {
my ($self, $v, $en, $dis) = @_;
$v = lc($v);
if ($v eq 'ignore') {
$self->{$en} = $self->{$dis} = 0;
} elsif ($v eq 'yes') {
$self->{$en} = 1;
$self->{$dis} = 0;
} elsif ($v eq 'no') {
$self->{$en} = 0;
$self->{$dis} = 1;
} else {
return (0, "Bad value for SALSA_" . uc($en));
}
return 1;
}
1;
|