2020-03-23 15:35:58 +01: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.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-08-15 17:01:15 +02:00
|
|
|
package sonia.scm.plugin;
|
2019-07-26 13:04:54 +02:00
|
|
|
|
|
|
|
|
import com.google.common.collect.ImmutableList;
|
2019-07-31 16:59:13 +02:00
|
|
|
import lombok.AllArgsConstructor;
|
2019-07-26 13:04:54 +02:00
|
|
|
import lombok.Getter;
|
2019-08-20 14:43:48 +02:00
|
|
|
import lombok.NoArgsConstructor;
|
2019-07-26 13:04:54 +02:00
|
|
|
|
|
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
|
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
|
|
|
import javax.xml.bind.annotation.XmlElement;
|
|
|
|
|
import javax.xml.bind.annotation.XmlRootElement;
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
import java.util.List;
|
2019-07-30 16:49:24 +02:00
|
|
|
import java.util.Map;
|
2019-08-20 07:53:17 +02:00
|
|
|
import java.util.Set;
|
2019-07-26 13:04:54 +02:00
|
|
|
|
|
|
|
|
@XmlRootElement
|
|
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
|
|
public final class PluginCenterDto implements Serializable {
|
|
|
|
|
|
|
|
|
|
@XmlElement(name = "_embedded")
|
|
|
|
|
private Embedded embedded;
|
|
|
|
|
|
|
|
|
|
public Embedded getEmbedded() {
|
|
|
|
|
return embedded;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@XmlRootElement(name = "_embedded")
|
|
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
2019-07-31 16:59:13 +02:00
|
|
|
public static class Embedded {
|
2019-07-26 13:04:54 +02:00
|
|
|
|
|
|
|
|
@XmlElement(name = "plugins")
|
|
|
|
|
private List<Plugin> plugins;
|
|
|
|
|
|
|
|
|
|
public List<Plugin> getPlugins() {
|
|
|
|
|
if (plugins == null) {
|
|
|
|
|
plugins = ImmutableList.of();
|
|
|
|
|
}
|
|
|
|
|
return plugins;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
|
|
@XmlRootElement(name = "plugins")
|
|
|
|
|
@Getter
|
2019-07-31 16:59:13 +02:00
|
|
|
@AllArgsConstructor
|
|
|
|
|
public static class Plugin {
|
2019-07-26 13:04:54 +02:00
|
|
|
|
|
|
|
|
private String name;
|
2019-08-15 17:01:15 +02:00
|
|
|
private String version;
|
2019-07-26 13:04:54 +02:00
|
|
|
private String displayName;
|
|
|
|
|
private String description;
|
|
|
|
|
private String category;
|
|
|
|
|
private String author;
|
2019-08-12 11:16:47 +02:00
|
|
|
private String avatarUrl;
|
2019-11-27 16:37:00 +01:00
|
|
|
private String sha256sum;
|
2019-07-26 13:04:54 +02:00
|
|
|
|
|
|
|
|
@XmlElement(name = "conditions")
|
|
|
|
|
private Condition conditions;
|
|
|
|
|
|
2019-08-20 07:53:17 +02:00
|
|
|
@XmlElement(name = "dependencies")
|
|
|
|
|
private Set<String> dependencies;
|
2019-07-26 13:04:54 +02:00
|
|
|
|
2020-07-21 11:39:08 +02:00
|
|
|
@XmlElement(name = "optionalDependencies")
|
|
|
|
|
private Set<String> optionalDependencies;
|
|
|
|
|
|
2019-07-26 13:04:54 +02:00
|
|
|
@XmlElement(name = "_links")
|
2019-07-31 10:27:52 +02:00
|
|
|
private Map<String, Link> links;
|
2019-07-26 13:04:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
|
|
@XmlRootElement(name = "conditions")
|
|
|
|
|
@Getter
|
2019-07-31 16:59:13 +02:00
|
|
|
@AllArgsConstructor
|
|
|
|
|
public static class Condition {
|
2019-07-26 13:04:54 +02:00
|
|
|
|
2019-08-12 11:16:47 +02:00
|
|
|
private List<String> os;
|
2019-07-26 13:04:54 +02:00
|
|
|
private String arch;
|
|
|
|
|
private String minVersion;
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-30 16:49:24 +02:00
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
|
|
@Getter
|
2019-08-20 14:43:48 +02:00
|
|
|
@NoArgsConstructor
|
|
|
|
|
@AllArgsConstructor
|
2019-07-30 16:49:24 +02:00
|
|
|
static class Link {
|
2019-07-31 10:27:52 +02:00
|
|
|
private String href;
|
2019-07-26 13:04:54 +02:00
|
|
|
}
|
|
|
|
|
}
|