Java tutorial
/* * This file is part of the PDF Split And Merge source code * Created on 30/apr/2014 * Copyright 2013-2014 by Andrea Vacondio (andrea.vacondio@gmail.com). * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.pdfsam.update; import static java.util.Objects.nonNull; import static org.apache.commons.lang3.StringUtils.isNotBlank; import static org.sejda.eventstudio.StaticStudio.eventStudio; import java.util.concurrent.CompletableFuture; import javafx.application.Platform; import javax.inject.Inject; import javax.inject.Named; import org.pdfsam.Pdfsam; import org.pdfsam.i18n.DefaultI18nContext; import org.sejda.eventstudio.annotation.EventListener; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Component listening for updates related requests * * @author Andrea Vacondio * */ @Named public class UpdatesController { private static final Logger LOG = LoggerFactory.getLogger(UpdatesController.class); private Pdfsam pdfsam; private UpdateService service; @Inject UpdatesController(UpdateService service, Pdfsam pdfsam) { this.service = service; this.pdfsam = pdfsam; eventStudio().addAnnotatedListeners(this); } @EventListener public void checkForUpdates(UpdateCheckRequest event) { LOG.debug(DefaultI18nContext.getInstance().i18n("Checking for updates")); CompletableFuture.supplyAsync(service::getLatestVersion).thenAccept(current -> { if (isNotBlank(current) && !pdfsam.version().equals(current)) { LOG.info(DefaultI18nContext.getInstance().i18n("PDFsam {0} is available for download", current)); Platform.runLater(() -> eventStudio().broadcast(new UpdateAvailableEvent(current))); } }).whenComplete((r, e) -> { if (nonNull(e)) { LOG.warn(DefaultI18nContext.getInstance().i18n("Unable to find the latest available version."), e); } }); } }