/
minecraftbackup
/
PlaceholderAPI
Обзор
Документация
Войти
/
minecraftbackup
/
PlaceholderAPI
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/me/clip/placeholderapi/expansion/cloud/CloudExpansion.java
202 строки
4 KB
PiggyPiglet
Fix #1034 & Deprecate VersionSpecific & update copyright (#1035)
30 апр 2024, 18:34
Не верифицирован
30 апр 2024, 18:34
068b5a3
Код
Авторство
О чём код?
/* * This file is part of PlaceholderAPI * * PlaceholderAPI * Copyright (c) 2015 - 2024 PlaceholderAPI Team * * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * PlaceholderAPI 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 General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package me.clip.placeholderapi.expansion.cloud; import java.util.List; import java.util.concurrent.TimeUnit; import java.util.stream.Collectors; import me.clip.placeholderapi.util.TimeUtil; public class CloudExpansion { private String name, author, latest_version, description, source_url, dependency_url; private boolean hasExpansion, shouldUpdate, verified; private long last_update, ratings_count; private double average_rating; private List<String> placeholders; private List<Version> versions; public CloudExpansion() { } public String getTimeSinceLastUpdate() { int time = (int) TimeUnit.MILLISECONDS.toSeconds(System.currentTimeMillis() - getLastUpdate()); return TimeUtil.getTime(time); } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } public Version getVersion() { return getLatestVersion() == null ? null : getVersion(getLatestVersion()); } public Version getVersion(String version) { return versions == null ? null : versions.stream() .filter(v -> v.getVersion().equals(version)) .findFirst() .orElse(null); } public List<String> getAvailableVersions() { return versions.stream().map(Version::getVersion).collect(Collectors.toList()); } public String getLatestVersion() { return latest_version; } public void setLatestVersion(String latest_version) { this.latest_version = latest_version; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getSourceUrl() { return source_url; } public void setSourceUrl(String source_url) { this.source_url = source_url; } public String getDependencyUrl() { return dependency_url; } public void setDependencyUrl(String dependency_url) { this.dependency_url = dependency_url; } public boolean hasExpansion() { return hasExpansion; } public void setHasExpansion(boolean hasExpansion) { this.hasExpansion = hasExpansion; } public boolean shouldUpdate() { return shouldUpdate; } public void setShouldUpdate(boolean shouldUpdate) { this.shouldUpdate = shouldUpdate; } public boolean isVerified() { return verified; } public long getLastUpdate() { return last_update; } public void setLastUpdate(long last_update) { this.last_update = last_update; } public long getRatingsCount() { return ratings_count; } public double getAverage_rating() { return average_rating; } public List<String> getPlaceholders() { return placeholders; } public void setPlaceholders(List<String> placeholders) { this.placeholders = placeholders; } public List<Version> getVersions() { return versions; } public void setVersions(List<Version> versions) { this.versions = versions; } public static class Version { private String url, version, release_notes; public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } public String getReleaseNotes() { return release_notes; } public void setReleaseNotes(String release_notes) { this.release_notes = release_notes; } } }