]> source.dussan.org Git - sonarqube.git/blob
31817fed2c5c07d374d41b4fc8399f6750909f2a
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2023 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20 package org.sonar.ce.task.projectexport.steps;
21
22 import com.sonarsource.governance.projectdump.protobuf.ProjectDump;
23 import java.util.List;
24 import java.util.Set;
25 import java.util.stream.Collectors;
26 import org.sonar.api.utils.log.Loggers;
27 import org.sonar.ce.task.projectexport.component.ComponentRepository;
28 import org.sonar.ce.task.step.ComputationStep;
29 import org.sonar.db.DbClient;
30 import org.sonar.db.DbSession;
31 import org.sonar.db.project.ProjectExportMapper;
32 import org.sonar.db.property.PropertyDto;
33
34 import static java.lang.String.format;
35 import static org.apache.commons.lang.StringUtils.defaultString;
36
37 public class ExportSettingsStep implements ComputationStep {
38
39   /**
40    * These properties are not exported as values depend on environment data that are not
41    * exported within the dump (Quality Gate, users).
42    */
43   private static final Set<String> IGNORED_KEYS = Set.of("sonar.issues.defaultAssigneeLogin");
44
45   private final DbClient dbClient;
46   private final ProjectHolder projectHolder;
47   private final ComponentRepository componentRepository;
48   private final DumpWriter dumpWriter;
49
50   public ExportSettingsStep(DbClient dbClient, ProjectHolder projectHolder, ComponentRepository componentRepository, DumpWriter dumpWriter) {
51     this.dbClient = dbClient;
52     this.projectHolder = projectHolder;
53     this.componentRepository = componentRepository;
54     this.dumpWriter = dumpWriter;
55   }
56
57   @Override
58   public void execute(Context context) {
59     long count = 0L;
60     try (
61       StreamWriter<ProjectDump.Setting> output = dumpWriter.newStreamWriter(DumpElement.SETTINGS);
62       DbSession dbSession = dbClient.openSession(false)) {
63
64       final ProjectDump.Setting.Builder builder = ProjectDump.Setting.newBuilder();
65       final List<PropertyDto> properties = dbSession.getMapper(ProjectExportMapper.class).selectPropertiesForExport(projectHolder.projectDto().getUuid())
66         .stream()
67         .filter(dto -> dto.getComponentUuid() != null)
68         .filter(dto -> !IGNORED_KEYS.contains(dto.getKey()))
69         .collect(Collectors.toList());
70       for (PropertyDto property : properties) {
71         builder.clear()
72           .setKey(property.getKey())
73           .setValue(defaultString(property.getValue()));
74
75         if (property.getComponentUuid() != null) {
76           builder.setComponentRef(componentRepository.getRef(property.getComponentUuid()));
77         }
78         output.write(builder.build());
79         ++count;
80       }
81
82       Loggers.get(getClass()).debug("{} settings exported", count);
83     } catch (Exception e) {
84       throw new IllegalStateException(format("Settings Export failed after processing %d settings successfully", count), e);
85     }
86   }
87
88   @Override
89   public String getDescription() {
90     return "Export settings";
91   }
92 }