blob: 40c248cd663a7361d46e6ef39d1de9f874681b30 [file] [log] [blame]
// Copyright (C) 2018 Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License"),
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.googlesource.gerrit.plugins.its.jira;
import com.google.gerrit.extensions.api.projects.ConfigValue;
import com.google.gerrit.server.config.ProjectConfigEntry;
import com.googlesource.gerrit.plugins.its.jira.restapi.JiraURL;
import java.net.MalformedURLException;
/** A {@link ProjectConfigEntry} for the Jira url. */
class JiraUrlProjectConfigEntry extends ProjectConfigEntry {
public static final String INVALID_URL_MSG = "******* Invalid URL *******";
/**
* Builds a @{link ProjectConfigEntry}.
*
* @param displayName the display name
*/
JiraUrlProjectConfigEntry(String displayName) {
super(displayName, "");
}
@Override
public ConfigValue preUpdate(ConfigValue configValue) {
if (configValue.value != null && !configValue.value.isEmpty()) {
try {
new JiraURL(configValue.value);
} catch (MalformedURLException e) {
configValue.value = INVALID_URL_MSG;
}
}
return configValue;
}
}