]> source.dussan.org Git - sonarqube.git/blob
adcf530d0ed45d86c9c306cfa70f7fec9cae0040
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2024 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.server.telemetry;
21
22 import java.util.HashMap;
23 import java.util.List;
24 import java.util.Map;
25 import org.sonar.db.DbClient;
26 import org.sonar.db.DbSession;
27 import org.sonar.db.user.UserDto;
28 import org.sonar.db.user.UserQuery;
29
30 public class TelemetryUserEnabledProvider implements TelemetryDataProvider<Boolean> {
31
32   private final DbClient dbClient;
33
34   public TelemetryUserEnabledProvider(DbClient dbClient) {
35     this.dbClient = dbClient;
36   }
37
38   @Override
39   public String getMetricKey() {
40     return "user_enabled";
41   }
42
43   @Override
44   public Dimension getDimension() {
45     return Dimension.USER;
46   }
47
48   @Override
49   public Granularity getGranularity() {
50     return Granularity.DAILY;
51   }
52
53   @Override
54   public TelemetryDataType getType() {
55     return TelemetryDataType.BOOLEAN;
56   }
57
58   @Override
59   public Map<String, Boolean> getUuidValues() {
60     Map<String, Boolean> result = new HashMap<>();
61     int pageSize = 1000;
62     int page = 1;
63     try (DbSession dbSession = dbClient.openSession(false)) {
64       List<UserDto> userDtos = null;
65       do {
66         userDtos = dbClient.userDao().selectUsers(dbSession, UserQuery.builder().build(), page, pageSize);
67         for (UserDto userDto : userDtos) {
68           result.put(userDto.getUuid(), userDto.isActive());
69         }
70         page++;
71       } while (!userDtos.isEmpty());
72     }
73     return result;
74   }
75 }