]> source.dussan.org Git - sonarqube.git/blob
3acfe87400ed8526ec3965d4d4f332f8aa320faa
[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.dismissmessage.ws;
21
22 import javax.annotation.Nullable;
23 import org.sonar.db.dismissmessage.MessageType;
24 import org.sonar.server.ws.WsAction;
25
26 public interface DismissMessageWsAction extends WsAction {
27   String PARAM_PROJECT_KEY = "projectKey";
28   String PARAM_MESSAGE_TYPE = "messageType";
29
30   static MessageType parseMessageType(String messageType) throws IllegalArgumentException {
31     try {
32       return MessageType.valueOf(messageType);
33     } catch (IllegalArgumentException e) {
34       throw new IllegalArgumentException("Invalid message type: " + messageType);
35     }
36   }
37
38   static void verifyProjectKeyAndMessageType(@Nullable String projectKey, MessageType type) {
39     switch (type) {
40       case GLOBAL_NCD_90, GLOBAL_NCD_PAGE_90 -> {
41         if (projectKey != null) {
42           throw new IllegalArgumentException("The 'projectKey' parameter is not expected for message type: " + type);
43         }
44       }
45       case PROJECT_NCD_90, PROJECT_NCD_PAGE_90, BRANCH_NCD_90 -> {
46         if(projectKey == null) {
47           throw new IllegalArgumentException("The 'projectKey' parameter is missing for message type: " + type);
48         }
49       }
50       default -> throw new IllegalArgumentException("Unexpected message type: " + type);
51     }
52   }
53 }