Skip to content

Commit

Permalink
[JENKINS-70044] Add telemetry for activation of optional permissions (j…
Browse files Browse the repository at this point in the history
…enkinsci#7342)

* [JENKINS-70044] Add telemetry for activation of optional permissions

* [JENKINS-70044] Add description.jelly for OptionalPermissions telemetry collector

* [JENKINS-70044] Improve phrasing in description.jelly

Co-authored-by: Daniel Beck <[email protected]>

Co-authored-by: Daniel Beck <[email protected]>
(cherry picked from commit 8b58686)
  • Loading branch information
dwnusbaum authored and NotMyFault committed Nov 11, 2022
1 parent 956a715 commit 5e7055a
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 0 deletions.
89 changes: 89 additions & 0 deletions core/src/main/java/jenkins/telemetry/impl/OptionalPermissions.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
/*
* The MIT License
*
* Copyright (c) 2022, CloudBees, Inc.
*
* 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 jenkins.telemetry.impl;

import hudson.Extension;
import hudson.model.Computer;
import hudson.model.Item;
import hudson.model.Run;
import hudson.security.Permission;
import java.time.LocalDate;
import java.util.Map;
import java.util.Set;
import java.util.TreeMap;
import jenkins.model.Jenkins;
import jenkins.telemetry.Telemetry;
import net.sf.json.JSONObject;
import org.kohsuke.accmod.Restricted;
import org.kohsuke.accmod.restrictions.NoExternalUse;

/**
* Telemetry implementation that gathers information about optional permissions.
*/
@Extension
@Restricted(NoExternalUse.class)
public class OptionalPermissions extends Telemetry {
private static final Set<String> OPTIONAL_PERMISSION_IDS = Set.of(
// Defined in core
Computer.EXTENDED_READ.getId(),
Item.EXTENDED_READ.getId(),
Item.WIPEOUT.getId(),
Jenkins.MANAGE.getId(),
Jenkins.SYSTEM_READ.getId(),
Run.ARTIFACTS.getId(),
// Defined in credentials
"com.cloudbees.plugins.credentials.CredentialsProvider.UseOwn",
"com.cloudbees.plugins.credentials.CredentialsProvider.UseItem");

@Override
public String getDisplayName() {
return "Activation of permissions that are not enabled by default";
}

@Override
public LocalDate getStart() {
return LocalDate.of(2022, 11, 1);
}

@Override
public LocalDate getEnd() {
return LocalDate.of(2023, 3, 1);
}

@Override
public JSONObject createContent() {
Map<String, Boolean> permissions = new TreeMap<>();
for (Permission p : Permission.getAll()) {
if (OPTIONAL_PERMISSION_IDS.contains(p.getId())) {
permissions.put(p.getId(), p.getEnabled());
}
}
JSONObject payload = new JSONObject();
payload.put("components", buildComponentInformation());
payload.put("permissions", permissions);
return payload;
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core">
Some permissions in Jenkins core and plugins are disabled by default and must be activated by setting a system property or installing a special plugin.
This trial collects which of these permissions are enabled and disabled, as well as the list of installed plugins.
This data will be used to understand whether these permissions are activated frequently enough to justify their maintenance cost, and to see if any of the permissions are popular enough to consider enabling them by default.
</j:jelly>

0 comments on commit 5e7055a

Please sign in to comment.