]> source.dussan.org Git - sonarqube.git/blob
155cfe4aa3b6160faad1576f8870bd595dc36e3b
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2019 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.platform.db.migration.version.v72;
21
22 import java.sql.SQLException;
23 import org.sonar.api.utils.System2;
24 import org.sonar.api.utils.log.Logger;
25 import org.sonar.api.utils.log.Loggers;
26 import org.sonar.core.util.UuidFactory;
27 import org.sonar.db.Database;
28 import org.sonar.server.platform.db.migration.step.DataChange;
29 import org.sonar.server.platform.db.migration.step.MassUpdate;
30
31 /**
32  * The goal of this migration is to sanitize disabled USERS, regarding new way of authentication users.
33  * Indeed, authentication will search for user but LOGIN but also buy using EXTERNAL_ID and EXTERNAL_PROVIDER.
34  *
35  * As a consequence, these columns must be set as NOT NULL in order to add a UNIQUE index on them.
36  *
37  * Unfortunately, these columns were previously set as null when disabling a user, that's why we need to populate them.
38  */
39 public class UpdateNullValuesFromExternalColumnsAndLoginOfUsers extends DataChange {
40
41   private static final Logger LOG = Loggers.get(UpdateNullValuesFromExternalColumnsAndLoginOfUsers.class);
42
43   private final System2 system2;
44   private UuidFactory uuidFactory;
45
46   public UpdateNullValuesFromExternalColumnsAndLoginOfUsers(Database db, System2 system2, UuidFactory uuidFactory) {
47     super(db);
48     this.system2 = system2;
49     this.uuidFactory = uuidFactory;
50   }
51
52   @Override
53   public void execute(Context context) throws SQLException {
54     MassUpdate massUpdate = context.prepareMassUpdate().rowPluralName("users");
55     massUpdate.select("SELECT id, login FROM users WHERE login IS NULL OR external_login IS NULL OR external_identity_provider IS NULL");
56     massUpdate.update("UPDATE users SET login=?, external_login=?, external_identity_provider=?, updated_at=? WHERE id=?");
57
58     long now = system2.now();
59     massUpdate.execute((row, update) -> {
60       long id = row.getLong(1);
61       String login = row.getString(2);
62       if (login == null) {
63         LOG.warn("No login has been found for user id '{}'. A UUID has been generated to not have null value.", id);
64         login = uuidFactory.create();
65       }
66       update.setString(1, login);
67       update.setString(2, login);
68       update.setString(3, "sonarqube");
69       update.setLong(4, now);
70       update.setLong(5, id);
71       return true;
72     });
73   }
74
75 }