-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Expand file tree
/
Copy pathPluginWrapper.java
More file actions
1441 lines (1274 loc) · 51.6 KB
/
PluginWrapper.java
File metadata and controls
1441 lines (1274 loc) · 51.6 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
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
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* The MIT License
*
* Copyright (c) 2004-2010, Sun Microsystems, Inc., Kohsuke Kawaguchi,
* Yahoo! Inc., Erik Ramfelt, Tom Huybrechts
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package hudson;
import static hudson.PluginWrapper.PluginDisableStatus.ALREADY_DISABLED;
import static hudson.PluginWrapper.PluginDisableStatus.DISABLED;
import static hudson.PluginWrapper.PluginDisableStatus.ERROR_DISABLING;
import static hudson.PluginWrapper.PluginDisableStatus.NOT_DISABLED_DEPENDANTS;
import static hudson.PluginWrapper.PluginDisableStatus.NO_SUCH_PLUGIN;
import static java.util.logging.Level.WARNING;
import static org.apache.commons.io.FilenameUtils.getBaseName;
import com.google.common.collect.Sets;
import edu.umd.cs.findbugs.annotations.CheckForNull;
import edu.umd.cs.findbugs.annotations.NonNull;
import hudson.PluginManager.PluginInstanceStore;
import hudson.model.AdministrativeMonitor;
import hudson.model.Api;
import hudson.model.ModelObject;
import hudson.model.UpdateCenter;
import hudson.model.UpdateSite;
import hudson.util.VersionNumber;
import java.io.Closeable;
import java.io.File;
import java.io.IOException;
import java.io.OutputStream;
import java.net.URL;
import java.net.URLClassLoader;
import java.nio.file.Files;
import java.nio.file.InvalidPathException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
import java.util.function.Predicate;
import java.util.jar.JarFile;
import java.util.jar.Manifest;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.stream.Collectors;
import jenkins.YesNoMaybe;
import jenkins.model.Jenkins;
import jenkins.plugins.DetachedPluginsUtil;
import jenkins.security.UpdateSiteWarningsMonitor;
import jenkins.util.URLClassLoader2;
import org.apache.commons.logging.LogFactory;
import org.kohsuke.accmod.Restricted;
import org.kohsuke.accmod.restrictions.Beta;
import org.kohsuke.accmod.restrictions.DoNotUse;
import org.kohsuke.accmod.restrictions.NoExternalUse;
import org.kohsuke.stapler.HttpResponse;
import org.kohsuke.stapler.HttpResponses;
import org.kohsuke.stapler.StaplerRequest2;
import org.kohsuke.stapler.StaplerResponse2;
import org.kohsuke.stapler.export.Exported;
import org.kohsuke.stapler.export.ExportedBean;
import org.kohsuke.stapler.interceptor.RequirePOST;
/**
* Represents a Jenkins plug-in and associated control information
* for Jenkins to control {@link Plugin}.
*
* <p>
* A plug-in is packaged into a jar file whose extension is {@code ".jpi"} (or {@code ".hpi"} for backward compatibility),
* A plugin needs to have a special manifest entry to identify what it is.
*
* <p>
* At the runtime, a plugin has two distinct state axis.
* <ol>
* <li>Enabled/Disabled. If enabled, Jenkins is going to use it
* next time Jenkins runs. Otherwise the next run will ignore it.
* <li>Activated/Deactivated. If activated, that means Jenkins is using
* the plugin in this session. Otherwise it's not.
* </ol>
* <p>
* For example, an activated but disabled plugin is still running but the next
* time it won't.
*
* @author Kohsuke Kawaguchi
*/
@ExportedBean
public class PluginWrapper implements Comparable<PluginWrapper>, ModelObject {
/**
* A plugin won't be loaded unless his declared dependencies are present and match the required minimal version.
* This can be set to false to disable the version check (legacy behaviour)
*/
private static final boolean ENABLE_PLUGIN_DEPENDENCIES_VERSION_CHECK = Boolean.parseBoolean(System.getProperty(PluginWrapper.class.getName() + "." + "dependenciesVersionCheck.enabled", "true"));
/**
* {@link PluginManager} to which this belongs to.
*/
public final PluginManager parent;
/**
* Plugin manifest.
* Contains description of the plugin.
*/
private final Manifest manifest;
/**
* {@link ClassLoader} for loading classes from this plugin.
* Null if disabled.
*/
public final ClassLoader classLoader;
/**
* Base URL for loading static resources from this plugin.
* Null if disabled. The static resources are mapped under
* {@code CONTEXTPATH/plugin/SHORTNAME/}.
*/
public final URL baseResourceURL;
/**
* Used to control enable/disable setting of the plugin.
* If this file exists, plugin will be disabled.
*/
private final File disableFile;
/**
* A .jpi file, an exploded plugin directory, or a .jpl file.
*/
private final File archive;
/**
* Short name of the plugin. The artifact Id of the plugin.
* This is also used in the URL within Jenkins, so it needs
* to remain stable even when the *.jpi file name is changed
* (like Maven does.)
*/
private final String shortName;
/**
* True if this plugin is activated for this session.
* The snapshot of {@code disableFile.exists()} as of the start up.
*/
private final boolean active;
private boolean hasCycleDependency = false;
private final List<Dependency> dependencies;
private final List<Dependency> optionalDependencies;
public List<String> getDependencyErrors() {
return List.copyOf(dependencyErrors.keySet());
}
@Restricted(NoExternalUse.class) // Jelly use
public List<String> getOriginalDependencyErrors() {
Predicate<Map.Entry<String, Boolean>> p = Map.Entry::getValue;
return dependencyErrors.entrySet().stream().filter(p.negate()).map(Map.Entry::getKey).collect(Collectors.toList());
}
@Restricted(NoExternalUse.class) // Jelly use
public boolean hasOriginalDependencyErrors() {
return !getOriginalDependencyErrors().isEmpty();
}
@Restricted(NoExternalUse.class) // Jelly use
public List<String> getDerivedDependencyErrors() {
return dependencyErrors.entrySet().stream().filter(Map.Entry::getValue).map(Map.Entry::getKey).collect(Collectors.toList());
}
@Restricted(NoExternalUse.class) // Jelly use
public boolean hasDerivedDependencyErrors() {
return !getDerivedDependencyErrors().isEmpty();
}
/**
* A String error message, and a boolean indicating whether it's an original error (false) or downstream from an original one (true)
*/
private final transient Map<String, Boolean> dependencyErrors = new HashMap<>(0);
/**
* Is this plugin bundled in jenkins.war?
*/
/*package*/ boolean isBundled;
/**
* List of plugins that depend on this plugin.
*/
private Set<String> dependents = Collections.emptySet();
/**
* List of plugins that depend optionally on this plugin.
*/
private Set<String> optionalDependents = Collections.emptySet();
/**
* The core can depend on a plugin if it is bundled. Sometimes it's the only thing that
* depends on the plugin e.g. UI support library bundle plugin.
*/
private static Set<String> CORE_ONLY_DEPENDANT = Set.of("jenkins-core");
private Integer healthScore;
/**
* Set the list of components that depend on this plugin.
* @param dependents The list of components that depend on this plugin.
*/
public void setDependents(@NonNull Set<String> dependents) {
this.dependents = dependents;
}
/**
* @deprecated Please use {@link #setDependents}.
*/
@Deprecated
public void setDependants(@NonNull Set<String> dependents) {
setDependents(dependents);
}
/**
* Set the list of components that depend optionally on this plugin.
* @param optionalDependents The list of components that depend optionally on this plugin.
*/
public void setOptionalDependents(@NonNull Set<String> optionalDependents) {
this.optionalDependents = optionalDependents;
}
/**
* @deprecated Please use {@link #setOptionalDependents}.
*/
@Deprecated
public void setOptionalDependants(@NonNull Set<String> optionalDependents) {
setOptionalDependents(optionalDependents);
}
/**
* Get the list of components that depend on this plugin.
* Note that the list will include elements of {@link #getOptionalDependents}.
* @return The list of components that depend on this plugin.
*/
public @NonNull Set<String> getDependents() {
if (isBundled && dependents.isEmpty()) {
return CORE_ONLY_DEPENDANT;
} else {
return dependents;
}
}
/**
* @deprecated Please use {@link #getDependents}.
*/
@Deprecated
public @NonNull Set<String> getDependants() {
return getDependents();
}
/**
* Like {@link #getDependents} but excluding optional dependencies.
* @since 2.181
*/
public @NonNull Set<String> getMandatoryDependents() {
Set<String> s = new HashSet<>(dependents);
s.removeAll(optionalDependents);
return s;
}
/**
* @return The list of components that depend optionally on this plugin.
*/
public @NonNull Set<String> getOptionalDependents() {
return optionalDependents;
}
/**
* @deprecated Please use {@link #getOptionalDependents}.
*/
@Deprecated
public @NonNull Set<String> getOptionalDependants() {
return getOptionalDependents();
}
/**
* Does this plugin have anything that depends on it.
* Note that optional dependents are included.
* @return {@code true} if something (Jenkins core, or another plugin) depends on this
* plugin, otherwise {@code false}.
*/
public boolean hasDependents() {
return isBundled || !dependents.isEmpty();
}
/**
* Like {@link #hasDependents} but excluding optional dependencies.
* @since 2.181
*/
public boolean hasMandatoryDependents() {
if (isBundled) {
return true;
}
return dependents.stream().anyMatch(d -> !optionalDependents.contains(d));
}
/**
* @deprecated Please use {@link #hasDependents}.
*/
@Deprecated
public boolean hasDependants() {
return hasDependents();
}
/**
* Does this plugin have anything that depends optionally on it.
* @return {@code true} if something (Jenkins core, or another plugin) depends optionally on this
* plugin, otherwise {@code false}.
*/
public boolean hasOptionalDependents() {
return !optionalDependents.isEmpty();
}
/**
* @deprecated Please use {@link #hasOptionalDependents}.
*/
@Deprecated
public boolean hasOptionalDependants() {
return hasOptionalDependents();
}
/**
* Does this plugin depend on any other plugins.
* Note that this include optional dependencies.
* @return {@code true} if this plugin depends on other plugins, otherwise {@code false}.
*/
public boolean hasDependencies() {
return !dependencies.isEmpty();
}
/**
* Like {@link #hasDependencies} but omitting optional dependencies.
* @since 2.181
*/
public boolean hasMandatoryDependencies() {
return dependencies.stream().anyMatch(d -> !d.optional);
}
/**
* Is this plugin deprecated?
*
* @return {@code true} if and only if an update site reports deprecations for this plugin.
* @since 2.246
*/
@Restricted(NoExternalUse.class)
public boolean isDeprecated() {
/*
While better handled in UpdateSite.Plugin that only exists for plugins actively being published.
We have no good model for plugin metadata from update sites for plugins not being published.
*/
return !getDeprecations().isEmpty();
}
/**
* Inject the specified jar file(s) to the plugins classpath.
* <p><strong>Warning:</strong> This is advanced usage that you should not be needed in 99.9% of all cases, any jar insertion
* should happen early into the plugins lifecycle to prevent classloading issues in dependent plugins.
* </p><p>
* Rather than use this functionality it is to have co-operative behaviour between any consumer of the libraries and load the classes in a separate {@link ClassLoader}.
* you can expose third-party libraries from a dynamic location in various ways, such as:
*
* <ul>
* <li>You could split your plugin into two modules:
* <ul>
* <li>regular Jenkins plugin code, plus some interface encapsulating access to the lib via a minimal, simplified
* API
* <li>an implementation of that interface which compiles against a provided static reference copy of the library,
* and which is packaged in your plugin as a resource (not in WEB-INF/lib/*.jar)
* </ul>
* <li>with coordination:
* <ul>
* <li>dynamically find some JAR(s) on the controller (or perhaps even agent)
* <li>find the bridge JAR in your plugin’s resources area
* <li>create some {@link URLClassLoader} loading them both, parented to the plugin {@link ClassLoader}
* <li>use reflection to load & instantiate the class of the bridge implementation, casting to the interface from
* the plugin
* </ul>
* </ul>
* For a concrete example see the <a href=
* "https://github.com/jenkinsci/database-plugin/blob/117.va2009e38b882/src/main/java/org/jenkinsci/plugins/database/GenericDatabase.java#L129-L142">database
* plugin</a>. *
*
* @throws Exception if the File could not be inserted into the classpath for some reason.
* @since 2.313
*/
@Restricted(Beta.class)
public void injectJarsToClasspath(File... jars) throws Exception {
if (classLoader instanceof URLClassLoader2) {
for (File f : jars) {
LOGGER.log(Level.CONFIG, () -> "Inserting " + f + " into " + shortName + " plugin's classpath");
((URLClassLoader2) classLoader).addURL(f.toURI().toURL());
}
} else {
throw new AssertionError("PluginWrapper classloader has changed type, but this code has not been updated accordingly");
}
}
@Restricted(NoExternalUse.class) // Jelly use only
public Integer getHealthScore() {
if (this.healthScore == null) {
this.healthScore = getInfoFromAllSites().stream()
.filter(Objects::nonNull)
.filter(p -> p.healthScore != null)
.findFirst()
.map(plugin -> plugin.healthScore)
.orElse(null);
}
return this.healthScore;
}
@Restricted(NoExternalUse.class)
public static String getHealthScoreClassForScore(int score) {
if (score > 80) return "top";
if (score > 60) return "middle";
return "bottom";
}
@Restricted(NoExternalUse.class) // Jelly use only
public String getHealthScoreClass() {
if (this.healthScore == null) return null;
return getHealthScoreClassForScore(this.healthScore);
}
@ExportedBean
public static final class Dependency {
@Exported
public final String shortName;
@Exported
public final String version;
@Exported
public final boolean optional;
public Dependency(String s) {
int idx = s.indexOf(':');
if (idx == -1)
throw new IllegalArgumentException("Illegal dependency specifier " + s);
this.shortName = Util.intern(s.substring(0, idx));
String version = Util.intern(s.substring(idx + 1));
boolean isOptional = false;
String[] osgiProperties = version.split("[;]");
for (int i = 1; i < osgiProperties.length; i++) {
String osgiProperty = osgiProperties[i].trim();
if (osgiProperty.equalsIgnoreCase("resolution:=optional")) {
isOptional = true;
break;
}
}
this.optional = isOptional;
if (isOptional) {
this.version = osgiProperties[0];
} else {
this.version = version;
}
}
@Override
public String toString() {
return shortName + " (" + version + ")" + (optional ? " optional" : "");
}
}
/**
* @param archive
* A .jpi archive file jar file, or a .jpl linked plugin.
* @param manifest
* The manifest for the plugin
* @param baseResourceURL
* A URL pointing to the resources for this plugin
* @param classLoader
* a classloader that loads classes from this plugin and its dependencies
* @param disableFile
* if this file exists on startup, the plugin will not be activated
* @param dependencies a list of mandatory dependencies
* @param optionalDependencies a list of optional dependencies
*/
public PluginWrapper(PluginManager parent, File archive, Manifest manifest, URL baseResourceURL,
ClassLoader classLoader, File disableFile,
List<Dependency> dependencies, List<Dependency> optionalDependencies) {
this.parent = parent;
this.manifest = manifest;
this.shortName = Util.intern(computeShortName(manifest, archive.getName()));
this.baseResourceURL = baseResourceURL;
this.classLoader = classLoader;
this.disableFile = disableFile;
this.active = !disableFile.exists();
this.dependencies = dependencies;
this.optionalDependencies = optionalDependencies;
for (Dependency d : optionalDependencies) {
assert d.optional : d + " included among optionalDependencies of " + shortName + " but was not marked optional";
}
this.archive = archive;
}
@Exported(visibility = 2)
@Override
public String getDisplayName() {
String displayName = getLongName();
String removePrefix = "Jenkins ";
if (displayName != null && displayName.startsWith(removePrefix)) {
return displayName.substring(removePrefix.length());
}
return displayName;
}
public Api getApi() {
Jenkins.get().checkAnyPermission(Jenkins.SYSTEM_READ, Jenkins.MANAGE);
return new Api(this);
}
/**
* Returns the URL of the index page jelly script.
*/
public URL getIndexPage() {
// In the current impl dependencies are checked first, so the plugin itself
// will add the last entry in the getResources result.
URL idx = null;
try {
Enumeration<URL> en = classLoader.getResources("index.jelly");
while (en.hasMoreElements())
idx = en.nextElement();
} catch (IOException ignore) { }
// In case plugin has dependencies but is missing its own index.jelly,
// check that result has this plugin's artifactId in it:
return idx != null && idx.toString().contains(shortName) ? idx : null;
}
static String computeShortName(Manifest manifest, String fileName) {
// use the name captured in the manifest, as often plugins
// depend on the specific short name in its URLs.
String n = manifest.getMainAttributes().getValue("Short-Name");
if (n != null) return n;
// maven seems to put this automatically, so good fallback to check.
n = manifest.getMainAttributes().getValue("Extension-Name");
if (n != null) return n;
// otherwise infer from the file name, since older plugins don't have
// this entry.
return getBaseName(fileName);
}
/**
* Gets all dependencies of this plugin on other plugins.
* Note that the list will <em>usually</em> include the members of {@link #getOptionalDependencies}
* (missing optional dependencies will however be omitted).
*/
@Exported
public List<Dependency> getDependencies() {
return dependencies;
}
/**
* Like {@link #getDependencies} but omits optional dependencies.
* @since 2.181
*/
public List<Dependency> getMandatoryDependencies() {
return dependencies.stream().filter(d -> !d.optional).collect(Collectors.toList());
}
public List<Dependency> getOptionalDependencies() {
return optionalDependencies;
}
/**
* Returns the short name suitable for URL.
*/
@Exported(visibility = 2)
public String getShortName() {
return shortName;
}
/**
* Gets the instance of {@link Plugin} contributed by this plugin.
* @return Plugin instace or {@code null} if it is not present in the plugin instance store.
*/
public @CheckForNull Plugin getPlugin() {
PluginInstanceStore pis = Jenkins.lookup(PluginInstanceStore.class);
return pis != null ? pis.store.get(this) : null;
}
/**
* Gets the instance of {@link Plugin} contributed by this plugin.
* @throws Exception no plugin in the {@link PluginInstanceStore}
*/
public @NonNull Plugin getPluginOrFail() throws Exception {
Plugin plugin = getPlugin();
if (plugin == null) {
throw new Exception("Cannot find the plugin instance: " + shortName);
}
return plugin;
}
/**
* Gets the URL that shows more information about this plugin.
* @return
* null if this information is unavailable.
* @since 1.283
*/
@Exported(visibility = 2)
public String getUrl() {
// first look in update center metadata
List<UpdateSite.Plugin> siteMetadataList = getInfoFromAllSites();
String firstSiteUrl = null;
if (!siteMetadataList.isEmpty()) {
firstSiteUrl = siteMetadataList.getFirst().wiki;
if (allUrlsMatch(firstSiteUrl, siteMetadataList)) {
return firstSiteUrl;
}
}
// if update sites give different / empty results,
// use manifest (since maven-hpi-plugin 1.30)
String url = manifest.getMainAttributes().getValue("Url");
if (url != null) {
return url;
}
return firstSiteUrl;
}
private boolean allUrlsMatch(String url, List<UpdateSite.Plugin> uiList) {
return uiList.stream().allMatch(k -> k.wiki != null && k.wiki.equals(url));
}
@Override
public String toString() {
return "Plugin:" + getShortName();
}
/**
* Returns a one-line descriptive name of this plugin.
*
* @deprecated For most purposes, use {@link #getDisplayName()}.
*/
@Exported(visibility = 2)
@Deprecated
public String getLongName() {
String name = manifest.getMainAttributes().getValue("Long-Name");
if (name != null) return name;
return shortName;
}
/**
* Does this plugin supports dynamic loading?
*/
@Exported
public YesNoMaybe supportsDynamicLoad() {
String v = manifest.getMainAttributes().getValue("Support-Dynamic-Loading");
if (v == null) return YesNoMaybe.MAYBE;
return Boolean.parseBoolean(v) ? YesNoMaybe.YES : YesNoMaybe.NO;
}
/**
* Returns the version number of this plugin
*/
@Exported(visibility = 2)
public String getVersion() {
return getVersionOf(manifest);
}
private String getVersionOf(Manifest manifest) {
String v = manifest.getMainAttributes().getValue("Plugin-Version");
if (v != null) return v;
// plugins generated before maven-hpi-plugin 1.3 should still have this attribute
v = manifest.getMainAttributes().getValue("Implementation-Version");
if (v != null) return v;
return "???";
}
/**
* Returns the required Jenkins core version of this plugin.
* @return the required Jenkins core version of this plugin.
* @since 2.16
*/
@Exported
public @CheckForNull String getRequiredCoreVersion() {
String v = manifest.getMainAttributes().getValue("Jenkins-Version");
if (v != null) return v;
v = manifest.getMainAttributes().getValue("Hudson-Version");
if (v != null) return v;
return null;
}
/**
* Returns the version number of this plugin
*/
public VersionNumber getVersionNumber() {
return new VersionNumber(getVersion());
}
/**
* Returns true if the version of this plugin is older than the given version.
*/
public boolean isOlderThan(VersionNumber v) {
try {
return getVersionNumber().compareTo(v) < 0;
} catch (IllegalArgumentException e) {
// if we can't figure out our current version, it probably means it's very old,
// since the version information is missing only from the very old plugins
return true;
}
}
/**
* Terminates the plugin.
*/
public void stop() {
Plugin plugin = getPlugin();
if (plugin != null) {
try {
LOGGER.log(Level.FINE, "Stopping {0}", shortName);
plugin.stop();
} catch (Throwable t) {
LOGGER.log(WARNING, "Failed to shut down " + shortName, t);
}
} else {
LOGGER.log(Level.FINE, "Could not find Plugin instance to stop for {0}", shortName);
}
// Work around a bug in commons-logging.
// See http://www.szegedi.org/articles/memleak.html
LogFactory.release(classLoader);
}
public void releaseClassLoader() {
if (classLoader instanceof Closeable)
try {
((Closeable) classLoader).close();
} catch (IOException e) {
LOGGER.log(WARNING, "Failed to shut down classloader", e);
}
}
/**
* Enables this plugin next time Jenkins runs.
*/
public void enable() throws IOException {
if (!disableFile.exists()) {
LOGGER.log(Level.FINEST, "Plugin {0} has been already enabled. Skipping the enable() operation", getShortName());
return;
}
if (!disableFile.delete())
throw new IOException("Failed to delete " + disableFile);
}
/**
* Disables this plugin next time Jenkins runs. As it doesn't check anything, it's recommended to use the method
* {@link #disable(PluginDisableStrategy)}
* @deprecated use {@link #disable(PluginDisableStrategy)}
*/
@Deprecated //see https://issues.jenkins.io/browse/JENKINS-27177
public void disable() throws IOException {
disableWithoutCheck();
}
/**
* Disable a plugin wihout checking any dependency. Only add the disable file.
*/
private void disableWithoutCheck() throws IOException {
try (OutputStream os = Files.newOutputStream(disableFile.toPath())) {
// creates an empty file
} catch (InvalidPathException e) {
throw new IOException(e);
}
}
/**
* Disable this plugin using a strategy.
* @param strategy strategy to use
* @return an object representing the result of the disablement of this plugin and its dependents plugins.
*/
public @NonNull PluginDisableResult disable(@NonNull PluginDisableStrategy strategy) {
PluginDisableResult result = new PluginDisableResult(shortName);
if (!this.isEnabled()) {
result.setMessage(Messages.PluginWrapper_Already_Disabled(shortName));
result.setStatus(ALREADY_DISABLED);
return result;
}
// Act as a flag indicating if this plugin, finally, can be disabled. If there is a not-disabled-dependent
// plugin, this one couldn't be disabled.
String aDependentNotDisabled = null;
// List of dependents plugins to 'check'. 'Check' means disable for mandatory or all strategies, or review if
// this dependent-mandatory plugin is enabled in order to return an error for the NONE strategy.
Set<String> dependentsToCheck = dependentsToCheck(strategy);
// Review all the dependents and add to the plugin result what happened with its dependents
for (String dependent : dependentsToCheck) {
PluginWrapper dependentPlugin = parent.getPlugin(dependent);
// The dependent plugin doesn't exist, add an error to the report
if (dependentPlugin == null) {
PluginDisableResult dependentStatus = new PluginDisableResult(dependent, NO_SUCH_PLUGIN, Messages.PluginWrapper_NoSuchPlugin(dependent));
result.addDependentDisableStatus(dependentStatus);
// If the strategy is none and there is some enabled dependent plugin, the plugin cannot be disabled. If
// this dependent plugin is not enabled, continue searching for one enabled.
} else if (strategy.equals(PluginDisableStrategy.NONE)) {
if (dependentPlugin.isEnabled()) {
aDependentNotDisabled = dependent;
break; // in this case, we don't need to continue with the rest of its dependents
}
// If the strategy is not none and this dependent plugin is not enabled, add it as already disabled
} else if (!dependentPlugin.isEnabled()) {
PluginDisableResult dependentStatus = new PluginDisableResult(dependent, ALREADY_DISABLED, Messages.PluginWrapper_Already_Disabled(dependent));
result.addDependentDisableStatus(dependentStatus);
// If the strategy is not none and this dependent plugin is enabled, disable it
} else {
// As there is no cycles in the plugin dependencies, the recursion shouldn't be infinite. The
// strategy used is the same for its dependents plugins
PluginDisableResult dependentResult = dependentPlugin.disable(strategy);
PluginDisableStatus dependentStatus = dependentResult.status;
// If something wrong happened, flag this dependent plugin to set the plugin later as not-disabled due
// to its dependents plugins.
if (ERROR_DISABLING.equals(dependentStatus) || NOT_DISABLED_DEPENDANTS.equals(dependentStatus)) {
aDependentNotDisabled = dependent;
break; // we found a dependent plugin enabled, stop looking for dependent plugins to disable.
}
result.addDependentDisableStatus(dependentResult);
}
}
// If there is no enabled-dependent plugin, disable this plugin and add it to the result
if (aDependentNotDisabled == null) {
try {
this.disableWithoutCheck();
result.setMessage(Messages.PluginWrapper_Plugin_Disabled(shortName));
result.setStatus(DISABLED);
} catch (IOException io) {
result.setMessage(Messages.PluginWrapper_Error_Disabling(shortName, io.toString()));
result.setStatus(ERROR_DISABLING);
}
// if there is yet some not disabled dependent plugin (only possible with none strategy), this plugin cannot
// be disabled.
} else {
result.setMessage(Messages.PluginWrapper_Plugin_Has_Dependent(shortName, aDependentNotDisabled, strategy));
result.setStatus(NOT_DISABLED_DEPENDANTS);
}
return result;
}
private Set<String> dependentsToCheck(PluginDisableStrategy strategy) {
Set<String> dependentsToCheck = switch (strategy) {
case ALL ->
// getDependents returns all the dependent plugins, mandatory or optional.
this.getDependents();
default ->
// It includes MANDATORY, NONE:
// with NONE, the process only fail if mandatory dependent plugins exists
// As of getDependents has all the dependents, we get the difference between them and only the optionals
Sets.difference(this.getDependents(), this.getOptionalDependents());
};
return dependentsToCheck;
}
/**
* Returns true if this plugin is enabled for this session.
*/
@Exported(visibility = 2)
public boolean isActive() {
return active && !hasCycleDependency();
}
public boolean hasCycleDependency() {
return hasCycleDependency;
}
public void setHasCycleDependency(boolean hasCycle) {
hasCycleDependency = hasCycle;
}
/**
* Is this plugin bundled in the WAR?
* Normally false as noted in {@link PluginManager#loadBundledPlugins}:
* this does <em>not</em> apply to “detached” plugins.
*/
@Exported
public boolean isBundled() {
return isBundled;
}
/**
* If true, the plugin is going to be activated next time
* Jenkins runs.
*/
@Exported(visibility = 2)
public boolean isEnabled() {
return !disableFile.exists();
}
public Manifest getManifest() {
return manifest;
}
public void setPlugin(Plugin plugin) {
Jenkins.lookup(PluginInstanceStore.class).store.put(this, plugin);
plugin.wrapper = this;
}
public String getPluginClass() {
return manifest.getMainAttributes().getValue("Plugin-Class");
}
public boolean hasLicensesXml() {
try {
new URL(baseResourceURL, "WEB-INF/licenses.xml").openStream().close();
return true;
} catch (IOException e) {
return false;
}
}
/**
* Makes sure that all the dependencies exist, and then accept optional dependencies
* as real dependencies.
*
* @throws IOException
* thrown if one or several mandatory dependencies doesn't exists.
*/
/*package*/ void resolvePluginDependencies() throws IOException {
if (ENABLE_PLUGIN_DEPENDENCIES_VERSION_CHECK) {
String requiredCoreVersion = getRequiredCoreVersion();
if (requiredCoreVersion == null) {
LOGGER.warning(shortName + " doesn't declare required core version.");
} else {
VersionNumber actualVersion = Jenkins.getVersion();
if (actualVersion.isOlderThan(new VersionNumber(requiredCoreVersion))) {
versionDependencyError(Messages.PluginWrapper_obsoleteCore(Jenkins.getVersion().toString(), requiredCoreVersion), Jenkins.getVersion().toString(), requiredCoreVersion);
}
}
}
// make sure dependencies exist
for (Dependency d : dependencies) {
PluginWrapper dependency = parent.getPlugin(d.shortName);
if (dependency == null) {
PluginWrapper failedDependency = NOTICE.getPlugin(d.shortName);
if (failedDependency != null) {
dependencyErrors.put(Messages.PluginWrapper_failed_to_load_dependency_2(failedDependency.getLongName(), failedDependency.getShortName(), failedDependency.getVersion()), true);
break;
} else {
dependencyErrors.put(Messages.PluginWrapper_missing(d.shortName, d.version), false);
}
} else {
if (dependency.isActive()) {
if (isDependencyObsolete(d, dependency)) {
versionDependencyError(Messages.PluginWrapper_obsolete_2(dependency.getLongName(), dependency.getShortName(), dependency.getVersion(), d.version), dependency.getVersion(), d.version);
}
} else {
if (isDependencyObsolete(d, dependency)) {
versionDependencyError(Messages.PluginWrapper_obsolete_2(dependency.getLongName(), dependency.getShortName(), dependency.getVersion(), d.version), dependency.getVersion(), d.version);
} else {
dependencyErrors.put(Messages.PluginWrapper_disabled_2(dependency.getLongName(), dependency.getShortName()), false);
}
}
}
}
// add the optional dependencies that exists
for (Dependency d : optionalDependencies) {
PluginWrapper dependency = parent.getPlugin(d.shortName);
if (dependency != null && dependency.isActive()) {