2020-09-21 17:04:30 +02:00
|
|
|
/*
|
|
|
|
|
* MIT License
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
package sonia.scm.admin;
|
|
|
|
|
|
2020-09-22 13:41:40 +02:00
|
|
|
import com.google.common.annotations.VisibleForTesting;
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
2020-09-21 17:04:30 +02:00
|
|
|
import sonia.scm.SCMContextProvider;
|
2020-09-22 13:41:40 +02:00
|
|
|
import sonia.scm.cache.Cache;
|
|
|
|
|
import sonia.scm.cache.CacheManager;
|
2020-09-21 17:04:30 +02:00
|
|
|
import sonia.scm.config.ScmConfiguration;
|
|
|
|
|
import sonia.scm.version.Version;
|
|
|
|
|
|
|
|
|
|
import javax.inject.Inject;
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
import java.util.Optional;
|
|
|
|
|
|
|
|
|
|
public class ReleaseVersionChecker {
|
|
|
|
|
|
2020-09-22 13:41:40 +02:00
|
|
|
private static final Logger LOG = LoggerFactory.getLogger(ReleaseVersionChecker.class);
|
|
|
|
|
private static final String CACHE_NAME = "sonia.cache.releaseInfo";
|
|
|
|
|
|
|
|
|
|
private final ReleaseFeedParser releaseFeedParser;
|
2020-09-21 17:04:30 +02:00
|
|
|
private final ScmConfiguration scmConfiguration;
|
|
|
|
|
private final SCMContextProvider scmContextProvider;
|
2020-09-22 13:41:40 +02:00
|
|
|
private Cache<String, ReleaseInfo> cache;
|
2020-09-21 17:04:30 +02:00
|
|
|
|
|
|
|
|
@Inject
|
2020-09-22 13:41:40 +02:00
|
|
|
public ReleaseVersionChecker(ReleaseFeedParser releaseFeedParser, ScmConfiguration scmConfiguration, SCMContextProvider scmContextProvider, CacheManager cacheManager) {
|
|
|
|
|
this.releaseFeedParser = releaseFeedParser;
|
2020-09-21 17:04:30 +02:00
|
|
|
this.scmConfiguration = scmConfiguration;
|
|
|
|
|
this.scmContextProvider = scmContextProvider;
|
2020-09-22 13:41:40 +02:00
|
|
|
this.cache = cacheManager.getCache(CACHE_NAME);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@VisibleForTesting
|
|
|
|
|
void setCache(Cache<String, ReleaseInfo> cache) {
|
|
|
|
|
this.cache = cache;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Optional<ReleaseInfo> checkForNewerVersion() {
|
|
|
|
|
ReleaseInfo cachedReleaseInfo = cache.get("latest");
|
|
|
|
|
if (cachedReleaseInfo != null) {
|
|
|
|
|
return Optional.of(cachedReleaseInfo);
|
|
|
|
|
} else {
|
|
|
|
|
return findLatestReleaseInRssFeed();
|
|
|
|
|
}
|
2020-09-21 17:04:30 +02:00
|
|
|
}
|
|
|
|
|
|
2020-09-22 13:41:40 +02:00
|
|
|
private Optional<ReleaseInfo> findLatestReleaseInRssFeed() {
|
2020-09-21 17:04:30 +02:00
|
|
|
try {
|
|
|
|
|
String releaseFeedUrl = scmConfiguration.getReleaseFeedUrl();
|
2020-09-22 13:41:40 +02:00
|
|
|
Optional<ReleaseInfo> latestRelease = releaseFeedParser.findLatestRelease(releaseFeedUrl);
|
|
|
|
|
if (latestRelease.isPresent() && isNewerVersion(latestRelease.get())) {
|
|
|
|
|
cache.put("latest", latestRelease.get());
|
|
|
|
|
return latestRelease;
|
2020-09-21 17:04:30 +02:00
|
|
|
}
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
// This is an silent action. We don't want the user to get any kind of error for this.
|
2020-09-22 13:41:40 +02:00
|
|
|
LOG.info("No newer version found for SCM-Manager");
|
2020-09-21 17:04:30 +02:00
|
|
|
return Optional.empty();
|
|
|
|
|
}
|
2020-09-22 16:21:49 +02:00
|
|
|
LOG.info("No newer version found for SCM-Manager");
|
2020-09-21 17:04:30 +02:00
|
|
|
return Optional.empty();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private boolean isNewerVersion(ReleaseInfo releaseInfo) {
|
2020-09-22 16:21:49 +02:00
|
|
|
Version versionFromReleaseFeed = Version.parse(releaseInfo.getVersion());
|
2020-09-21 17:04:30 +02:00
|
|
|
return versionFromReleaseFeed.isNewer(scmContextProvider.getVersion());
|
|
|
|
|
}
|
|
|
|
|
}
|