2020-09-15 03:16:26 +02:00
|
|
|
/*
|
2021-01-13 02:33:51 +01:00
|
|
|
* Copyright (C) 2020-2021 Christian Pierre MOMON <christian@momon.org>
|
2020-09-15 03:16:26 +02:00
|
|
|
*
|
|
|
|
* This file is part of StatoolInfos, simple service statistics tool.
|
|
|
|
*
|
|
|
|
* StatoolInfos 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.
|
|
|
|
*
|
|
|
|
* StatoolInfos 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with StatoolInfos. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
package fr.devinsy.statoolinfos.core;
|
|
|
|
|
2020-09-17 18:54:29 +02:00
|
|
|
import java.io.File;
|
2020-09-19 02:37:52 +02:00
|
|
|
import java.net.MalformedURLException;
|
|
|
|
import java.net.URL;
|
2020-09-28 03:52:51 +02:00
|
|
|
import java.time.LocalDateTime;
|
2020-10-07 04:33:30 +02:00
|
|
|
import java.util.regex.Matcher;
|
|
|
|
import java.util.regex.Pattern;
|
2020-09-19 02:37:52 +02:00
|
|
|
|
2020-10-23 03:59:44 +02:00
|
|
|
import org.apache.commons.codec.digest.DigestUtils;
|
2020-10-07 04:33:30 +02:00
|
|
|
import org.apache.commons.lang3.RegExUtils;
|
2020-09-19 02:37:52 +02:00
|
|
|
import org.apache.commons.lang3.StringUtils;
|
2020-10-15 02:10:21 +02:00
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.LoggerFactory;
|
2020-09-17 18:54:29 +02:00
|
|
|
|
2020-09-17 02:28:37 +02:00
|
|
|
import fr.devinsy.statoolinfos.properties.PathProperties;
|
2020-10-07 04:33:30 +02:00
|
|
|
import fr.devinsy.statoolinfos.properties.PathProperty;
|
2020-09-15 03:16:26 +02:00
|
|
|
import fr.devinsy.statoolinfos.properties.PathPropertyList;
|
2020-10-07 04:33:30 +02:00
|
|
|
import fr.devinsy.strings.StringList;
|
2020-09-15 03:16:26 +02:00
|
|
|
|
|
|
|
/**
|
2020-09-19 02:37:52 +02:00
|
|
|
* The Class Service.
|
2020-09-15 03:16:26 +02:00
|
|
|
*/
|
|
|
|
public class Service extends PathPropertyList
|
|
|
|
{
|
|
|
|
private static final long serialVersionUID = 3629841771102288863L;
|
2020-10-04 00:18:38 +02:00
|
|
|
|
2020-10-15 02:10:21 +02:00
|
|
|
private static Logger logger = LoggerFactory.getLogger(Service.class);
|
|
|
|
|
2020-11-17 05:44:31 +01:00
|
|
|
public enum HostProviderType
|
|
|
|
{
|
|
|
|
HOME,
|
|
|
|
HOSTEDBAY,
|
|
|
|
HOSTEDSERVER,
|
|
|
|
OUTSOURCED,
|
|
|
|
UNKNOWN
|
|
|
|
}
|
|
|
|
|
|
|
|
public enum HostServerType
|
|
|
|
{
|
|
|
|
NANO,
|
|
|
|
PHYSICAL,
|
|
|
|
VIRTUAL,
|
|
|
|
SHARED,
|
|
|
|
CLOUD,
|
|
|
|
UNKNOWN
|
|
|
|
}
|
|
|
|
|
2020-11-19 02:11:52 +01:00
|
|
|
public enum RegistrationType
|
|
|
|
{
|
|
|
|
NONE,
|
|
|
|
FREE,
|
|
|
|
MEMBER,
|
|
|
|
CLIENT,
|
|
|
|
UNKNOWN
|
|
|
|
}
|
|
|
|
|
2021-01-13 02:33:51 +01:00
|
|
|
public enum ServiceInstallType
|
|
|
|
{
|
|
|
|
DISTRIBUTION,
|
|
|
|
PROVIDER,
|
|
|
|
PACKAGE,
|
|
|
|
CLONEREPO,
|
|
|
|
ARCHIVE,
|
|
|
|
SOURCES,
|
|
|
|
CONTAINER,
|
|
|
|
UNKNOWN
|
|
|
|
}
|
|
|
|
|
2020-10-04 00:18:38 +02:00
|
|
|
public enum Status
|
|
|
|
{
|
|
|
|
OK,
|
|
|
|
WARNING,
|
|
|
|
ALERT,
|
|
|
|
ERROR,
|
|
|
|
OVER,
|
2020-10-04 02:50:08 +02:00
|
|
|
VOID
|
2020-10-04 00:18:38 +02:00
|
|
|
}
|
|
|
|
|
2020-09-21 06:15:07 +02:00
|
|
|
private Organization organization;
|
2020-09-23 21:56:40 +02:00
|
|
|
private File inputFile;
|
|
|
|
private URL inputURL;
|
2020-10-23 03:59:44 +02:00
|
|
|
private String logoFileName;
|
2020-09-15 03:16:26 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Instantiates a new service.
|
|
|
|
*/
|
|
|
|
public Service()
|
|
|
|
{
|
|
|
|
super(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Instantiates a new service.
|
|
|
|
*
|
|
|
|
* @param properties
|
|
|
|
* the properties
|
|
|
|
*/
|
2020-09-17 02:28:37 +02:00
|
|
|
public Service(final PathProperties properties)
|
2020-09-15 03:16:26 +02:00
|
|
|
{
|
|
|
|
super(properties);
|
|
|
|
}
|
|
|
|
|
2020-10-03 06:30:47 +02:00
|
|
|
/**
|
|
|
|
* Gets the contact email.
|
|
|
|
*
|
|
|
|
* @return the contact email
|
|
|
|
*/
|
|
|
|
public String getContactEmail()
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
|
|
|
result = get("service.contact.email");
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the contact website.
|
|
|
|
*
|
|
|
|
* @return the contact website
|
|
|
|
*/
|
|
|
|
public String getContactWebsite()
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
|
|
|
result = get("service.contact.url");
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-09-28 03:52:51 +02:00
|
|
|
public LocalDateTime getCrawledDate()
|
|
|
|
{
|
|
|
|
LocalDateTime result;
|
|
|
|
|
|
|
|
result = LocalDateTime.parse(get("crawl.file.datetime"));
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-09-15 03:16:26 +02:00
|
|
|
/**
|
|
|
|
* Gets the description.
|
|
|
|
*
|
|
|
|
* @return the description
|
|
|
|
*/
|
|
|
|
public String getDescription()
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
|
|
|
result = get("service.description");
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-10-03 06:30:47 +02:00
|
|
|
/**
|
|
|
|
* Gets the end date.
|
|
|
|
*
|
|
|
|
* @return the end date
|
|
|
|
*/
|
|
|
|
public String getEndDate()
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
2020-10-15 01:49:55 +02:00
|
|
|
result = get("service.enddate");
|
2020-10-03 06:30:47 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-11-17 05:44:31 +01:00
|
|
|
/**
|
|
|
|
* Gets the host provider type.
|
|
|
|
*
|
|
|
|
* @return the host provider type
|
|
|
|
*/
|
|
|
|
public HostProviderType getHostProviderType()
|
|
|
|
{
|
|
|
|
HostProviderType result;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
String value = StringUtils.toRootUpperCase(get("host.provider.type"));
|
|
|
|
|
|
|
|
result = HostProviderType.valueOf(value);
|
|
|
|
}
|
|
|
|
catch (IllegalArgumentException | NullPointerException exception)
|
|
|
|
{
|
|
|
|
result = HostProviderType.UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the host server type.
|
|
|
|
*
|
|
|
|
* @return the host server type
|
|
|
|
*/
|
|
|
|
public HostServerType getHostServerType()
|
|
|
|
{
|
|
|
|
HostServerType result;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
String value = StringUtils.toRootUpperCase(get("host.server.type"));
|
|
|
|
|
|
|
|
result = HostServerType.valueOf(value);
|
|
|
|
}
|
|
|
|
catch (IllegalArgumentException | NullPointerException exception)
|
|
|
|
{
|
|
|
|
result = HostServerType.UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-09-23 21:56:40 +02:00
|
|
|
public File getInputFile()
|
2020-09-17 18:54:29 +02:00
|
|
|
{
|
2020-09-23 21:56:40 +02:00
|
|
|
return this.inputFile;
|
|
|
|
}
|
|
|
|
|
|
|
|
public URL getInputURL()
|
|
|
|
{
|
|
|
|
return this.inputURL;
|
2020-09-17 18:54:29 +02:00
|
|
|
}
|
|
|
|
|
2020-10-03 06:30:47 +02:00
|
|
|
/**
|
|
|
|
* Gets the legal website.
|
|
|
|
*
|
|
|
|
* @return the legal website
|
|
|
|
*/
|
|
|
|
public String getLegalWebsite()
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
|
|
|
result = get("service.legal.url", "service.legal");
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-10-04 00:18:38 +02:00
|
|
|
/**
|
|
|
|
* Gets the license name.
|
|
|
|
*
|
|
|
|
* @return the license name
|
|
|
|
*/
|
|
|
|
public String getLicenseName()
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
|
|
|
result = get("software.license.name");
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-01-15 04:58:55 +01:00
|
|
|
/**
|
|
|
|
* Gets the local name.
|
|
|
|
*
|
|
|
|
* @return the local name
|
|
|
|
*/
|
|
|
|
public String getLocalFileName()
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
|
|
|
result = this.organization.getTechnicalName() + "-" + getTechnicalName() + ".properties";
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-10-23 03:59:44 +02:00
|
|
|
public String getLogoFileName()
|
|
|
|
{
|
|
|
|
return this.logoFileName;
|
|
|
|
}
|
|
|
|
|
2020-09-19 02:37:52 +02:00
|
|
|
/**
|
|
|
|
* Gets the logo URL.
|
|
|
|
*
|
|
|
|
* @return the logo URL
|
|
|
|
* @throws MalformedURLException
|
|
|
|
* the malformed URL exception
|
|
|
|
*/
|
|
|
|
public URL getLogoURL() throws MalformedURLException
|
|
|
|
{
|
|
|
|
URL result;
|
|
|
|
|
|
|
|
String path = get("service.logo");
|
|
|
|
if ((StringUtils.isBlank(path)) || (!StringUtils.startsWith(path, "http")))
|
|
|
|
{
|
|
|
|
result = null;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result = new URL(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-10-07 04:33:30 +02:00
|
|
|
/**
|
|
|
|
* Gets the metric.
|
|
|
|
*
|
|
|
|
* @param path
|
|
|
|
* the path
|
|
|
|
* @return the metric
|
|
|
|
*/
|
|
|
|
public Metric getMetric(final String path)
|
|
|
|
{
|
|
|
|
Metric result;
|
|
|
|
|
|
|
|
String metricName = StringUtils.defaultIfBlank(get(path + ".name"), RegExUtils.removeFirst(path, "^metrics\\."));
|
|
|
|
String metricDescription = StringUtils.defaultIfBlank(get(path + ".description"), metricName);
|
|
|
|
|
|
|
|
StringList years = getMetricYears(path).sort();
|
|
|
|
|
|
|
|
if (years.isEmpty())
|
|
|
|
{
|
|
|
|
result = null;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-10-15 01:47:48 +02:00
|
|
|
result = new Metric(path, metricName, metricDescription, years.get(0));
|
2020-10-07 04:33:30 +02:00
|
|
|
|
|
|
|
for (String year : years)
|
|
|
|
{
|
|
|
|
result.getYearValues().add(get(path + "." + year));
|
|
|
|
result.getMonthValues().addAll(StatoolInfosUtils.splitMonthValues(get(path + "." + year + ".months")));
|
|
|
|
result.getWeekValues().addAll(StatoolInfosUtils.splitWeekValues(get(path + "." + year + ".weeks")));
|
|
|
|
result.getDayValues().addAll(StatoolInfosUtils.splitDayValues(get(path + "." + year + ".weeks")));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the metric years.
|
|
|
|
*
|
|
|
|
* @param path
|
|
|
|
* the path
|
|
|
|
* @return the metric years
|
|
|
|
*/
|
|
|
|
public StringList getMetricYears(final String path)
|
|
|
|
{
|
|
|
|
StringList result;
|
|
|
|
|
|
|
|
result = new StringList();
|
|
|
|
|
2020-10-15 02:10:21 +02:00
|
|
|
Pattern pattern = Pattern.compile("^" + path + "\\.(?<year>\\d{4}).*$");
|
2020-10-07 04:33:30 +02:00
|
|
|
|
|
|
|
for (PathProperty property : getByPrefix(path))
|
|
|
|
{
|
|
|
|
String subPath = property.getPath();
|
|
|
|
Matcher matcher = pattern.matcher(subPath);
|
|
|
|
if (matcher.matches())
|
|
|
|
{
|
|
|
|
if (matcher.start("year") != -1)
|
|
|
|
{
|
|
|
|
result.add(matcher.group("year"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-09-15 03:16:26 +02:00
|
|
|
/**
|
|
|
|
* Gets the name.
|
|
|
|
*
|
|
|
|
* @return the name
|
|
|
|
*/
|
|
|
|
public String getName()
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
|
|
|
result = get("service.name");
|
|
|
|
|
2020-10-23 03:59:44 +02:00
|
|
|
if (StringUtils.isBlank(result))
|
|
|
|
{
|
|
|
|
String seed = get("crawl.url");
|
|
|
|
result = DigestUtils.md5Hex(seed).substring(0, 8);
|
|
|
|
}
|
|
|
|
|
2020-09-15 03:16:26 +02:00
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-09-21 06:15:07 +02:00
|
|
|
public Organization getOrganization()
|
|
|
|
{
|
|
|
|
return this.organization;
|
|
|
|
}
|
|
|
|
|
2020-10-17 21:52:39 +02:00
|
|
|
/**
|
|
|
|
* Gets the property file name.
|
|
|
|
*
|
|
|
|
* @return the property file name
|
|
|
|
*/
|
2020-10-17 17:57:10 +02:00
|
|
|
public String getPropertyFileName()
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
|
|
|
result = getOrganization().getTechnicalName() + "-" + getTechnicalName() + ".properties";
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-01-13 02:33:51 +01:00
|
|
|
/**
|
|
|
|
* Gets the service install type.
|
|
|
|
*
|
|
|
|
* @return the service install type
|
|
|
|
*/
|
|
|
|
public ServiceInstallType getServiceInstallType()
|
|
|
|
{
|
|
|
|
ServiceInstallType result;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
String value = StringUtils.toRootUpperCase(get("service.install.type"));
|
|
|
|
|
|
|
|
result = ServiceInstallType.valueOf(value);
|
|
|
|
}
|
|
|
|
catch (IllegalArgumentException | NullPointerException exception)
|
|
|
|
{
|
|
|
|
result = ServiceInstallType.UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-10-19 02:17:57 +02:00
|
|
|
/**
|
|
|
|
* Gets the software description.
|
|
|
|
*
|
|
|
|
* @return the software description
|
|
|
|
*/
|
|
|
|
public String getSoftwareDescription()
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
|
|
|
result = get("software.description");
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-10-04 00:18:38 +02:00
|
|
|
/**
|
|
|
|
* Gets the software license name.
|
|
|
|
*
|
|
|
|
* @return the software license name
|
|
|
|
*/
|
|
|
|
public String getSoftwareLicenseName()
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
|
|
|
result = get("software.license.name");
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the software license webpage.
|
|
|
|
*
|
|
|
|
* @return the software license webpage
|
|
|
|
*/
|
|
|
|
public String getSoftwareLicenseWebpage()
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
|
|
|
result = get("software.license.url");
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-09-25 04:36:38 +02:00
|
|
|
/**
|
|
|
|
* Gets the software name.
|
|
|
|
*
|
|
|
|
* @return the software name
|
|
|
|
*/
|
|
|
|
public String getSoftwareName()
|
2020-09-15 03:16:26 +02:00
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
|
|
|
result = get("software.name");
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-10-04 00:18:38 +02:00
|
|
|
/**
|
|
|
|
* Gets the software source website.
|
|
|
|
*
|
|
|
|
* @return the software source website
|
|
|
|
*/
|
|
|
|
public String getSoftwareSourceWebsite()
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
|
|
|
result = get("software.source.url");
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-10-15 01:47:48 +02:00
|
|
|
/**
|
|
|
|
* Gets the software technical name.
|
|
|
|
*
|
|
|
|
* @return the software technical name
|
|
|
|
*/
|
|
|
|
public String getSoftwareTechnicalName()
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
|
|
|
result = StatoolInfosUtils.toTechnicalName(getSoftwareName());
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-10-04 00:18:38 +02:00
|
|
|
/**
|
|
|
|
* Gets the software version.
|
|
|
|
*
|
|
|
|
* @return the software version
|
|
|
|
*/
|
|
|
|
public String getSoftwareVersion()
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
|
|
|
result = get("software.version");
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the software website.
|
|
|
|
*
|
|
|
|
* @return the software website
|
|
|
|
*/
|
|
|
|
public String getSoftwareWebsite()
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
|
|
|
result = get("software.website");
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-10-03 06:30:47 +02:00
|
|
|
/**
|
|
|
|
* Gets the start date.
|
|
|
|
*
|
|
|
|
* @return the start date
|
|
|
|
*/
|
|
|
|
public String getStartDate()
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
2020-10-15 01:49:55 +02:00
|
|
|
result = get("service.startdate");
|
2020-10-03 06:30:47 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-10-04 00:18:38 +02:00
|
|
|
/**
|
|
|
|
* Gets the status.
|
|
|
|
*
|
|
|
|
* @return the status
|
|
|
|
*/
|
|
|
|
public Status getStatus()
|
|
|
|
{
|
|
|
|
Status result;
|
|
|
|
|
|
|
|
String value = get("service.status", "service.status.level");
|
|
|
|
|
2020-10-04 02:50:08 +02:00
|
|
|
if ((StringUtils.isBlank(value)) || (StringUtils.equalsAnyIgnoreCase(value, "unknown", "void")))
|
2020-10-04 00:18:38 +02:00
|
|
|
{
|
2020-10-04 02:50:08 +02:00
|
|
|
result = Status.VOID;
|
2020-10-04 00:18:38 +02:00
|
|
|
}
|
|
|
|
else if (StringUtils.equalsAnyIgnoreCase(value, "ON", "OK"))
|
|
|
|
{
|
|
|
|
result = Status.OK;
|
|
|
|
}
|
|
|
|
else if (StringUtils.equalsAnyIgnoreCase(value, "alert"))
|
|
|
|
{
|
|
|
|
result = Status.ALERT;
|
|
|
|
}
|
2020-10-04 02:50:08 +02:00
|
|
|
else if (StringUtils.equalsAnyIgnoreCase(value, "error", "ko", "broken", "off"))
|
2020-10-04 00:18:38 +02:00
|
|
|
{
|
|
|
|
result = Status.ERROR;
|
|
|
|
}
|
2020-10-04 02:50:08 +02:00
|
|
|
else if (StringUtils.equalsAnyIgnoreCase(value, "over", "terminated", "closed", "ended"))
|
2020-10-04 00:18:38 +02:00
|
|
|
{
|
|
|
|
result = Status.OVER;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-10-04 02:50:08 +02:00
|
|
|
result = Status.VOID;
|
2020-10-04 00:18:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the status description.
|
|
|
|
*
|
|
|
|
* @return the status description
|
|
|
|
*/
|
|
|
|
public String getStatusDescription()
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
|
|
|
result = get("service.status.description");
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-10-04 02:50:08 +02:00
|
|
|
/**
|
|
|
|
* @return
|
|
|
|
*/
|
2020-10-03 06:30:47 +02:00
|
|
|
public String getTechnicalDocWebsite()
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
2020-11-21 17:14:32 +01:00
|
|
|
result = get("service.guide.technical", "service.guide.technical.url");
|
2020-10-03 06:30:47 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-09-15 03:16:26 +02:00
|
|
|
/**
|
2020-09-17 02:03:56 +02:00
|
|
|
* Gets the technical name.
|
2020-09-15 03:16:26 +02:00
|
|
|
*
|
2020-09-17 02:03:56 +02:00
|
|
|
* @return the technical name
|
2020-09-15 03:16:26 +02:00
|
|
|
*/
|
2020-09-17 02:03:56 +02:00
|
|
|
public String getTechnicalName()
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
2020-09-25 04:36:38 +02:00
|
|
|
result = StatoolInfosUtils.toTechnicalName(getName());
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* User count.
|
|
|
|
*
|
|
|
|
* @return the int
|
|
|
|
*/
|
|
|
|
public int getUserCount()
|
|
|
|
{
|
|
|
|
int result;
|
|
|
|
|
|
|
|
result = 0;
|
2020-09-17 02:03:56 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-10-03 06:30:47 +02:00
|
|
|
/**
|
|
|
|
* Gets the user doc.
|
|
|
|
*
|
|
|
|
* @return the user doc
|
|
|
|
*/
|
|
|
|
public String getUserDocWebsite()
|
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
2020-10-04 02:50:08 +02:00
|
|
|
result = get("service.documentation", "service.documentation.url", "service.documentation.user", "service.documentation.user.url", "service.documentation.tutorial",
|
|
|
|
"service.documentation.tutorial.url",
|
|
|
|
"service.guide.user",
|
|
|
|
"service.guide.user.url");
|
2020-10-03 06:30:47 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-09-17 02:03:56 +02:00
|
|
|
/**
|
|
|
|
* Gets the website.
|
|
|
|
*
|
|
|
|
* @return the website
|
|
|
|
*/
|
|
|
|
public String getWebsite()
|
2020-09-15 03:16:26 +02:00
|
|
|
{
|
|
|
|
String result;
|
|
|
|
|
2020-09-17 03:59:11 +02:00
|
|
|
result = get("service.website");
|
2020-09-15 03:16:26 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
2020-09-17 18:54:29 +02:00
|
|
|
|
2020-10-02 18:18:17 +02:00
|
|
|
/**
|
|
|
|
* Checks if is registration client.
|
|
|
|
*
|
|
|
|
* @return true, if is registration client
|
|
|
|
*/
|
|
|
|
public boolean isRegistrationClient()
|
|
|
|
{
|
|
|
|
boolean result;
|
|
|
|
|
|
|
|
result = StringUtils.containsIgnoreCase(get("service.registration"), "Client");
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if is registration free.
|
|
|
|
*
|
|
|
|
* @return true, if is registration free
|
|
|
|
*/
|
|
|
|
public boolean isRegistrationFree()
|
|
|
|
{
|
|
|
|
boolean result;
|
|
|
|
|
|
|
|
result = StringUtils.containsIgnoreCase(get("service.registration"), "Free");
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if is registration member.
|
|
|
|
*
|
|
|
|
* @return true, if is registration member
|
|
|
|
*/
|
|
|
|
public boolean isRegistrationMember()
|
|
|
|
{
|
|
|
|
boolean result;
|
|
|
|
|
|
|
|
result = StringUtils.containsIgnoreCase(get("service.registration"), "Member");
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if is registration none.
|
|
|
|
*
|
|
|
|
* @return true, if is registration none
|
|
|
|
*/
|
|
|
|
public boolean isRegistrationNone()
|
|
|
|
{
|
|
|
|
boolean result;
|
|
|
|
|
|
|
|
result = StringUtils.containsIgnoreCase(get("service.registration"), "None");
|
|
|
|
|
|
|
|
//
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-09-23 21:56:40 +02:00
|
|
|
public void setInputFile(final File inputFile)
|
|
|
|
{
|
|
|
|
this.inputFile = inputFile;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setInputURL(final URL inputURL)
|
2020-09-17 18:54:29 +02:00
|
|
|
{
|
2020-09-23 21:56:40 +02:00
|
|
|
this.inputURL = inputURL;
|
2020-09-17 18:54:29 +02:00
|
|
|
}
|
2020-09-21 06:15:07 +02:00
|
|
|
|
2020-10-23 03:59:44 +02:00
|
|
|
public void setLogoFileName(final String logoFileName)
|
|
|
|
{
|
|
|
|
this.logoFileName = logoFileName;
|
|
|
|
}
|
|
|
|
|
2020-09-21 06:15:07 +02:00
|
|
|
public void setOrganization(final Organization organization)
|
|
|
|
{
|
|
|
|
this.organization = organization;
|
|
|
|
}
|
2020-09-15 03:16:26 +02:00
|
|
|
}
|