/* * Copyright (C) 2020 Christian Pierre MOMON * * 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 . */ package fr.devinsy.statoolinfos.core; import java.io.File; import java.net.MalformedURLException; import java.net.URL; import java.time.LocalDateTime; import org.apache.commons.lang3.StringUtils; import fr.devinsy.statoolinfos.properties.PathProperties; import fr.devinsy.statoolinfos.properties.PathPropertyList; /** * The Class PathProperty. */ public class Organization extends PathPropertyList { private static final long serialVersionUID = -2709210934548224213L; private Federation federation; private Services services; private File inputFile; private URL inputURL; /** * Instantiates a new organization. */ public Organization() { super(); this.services = new Services(); } /** * Instantiates a new organization. * * @param properties * the properties */ public Organization(final PathProperties properties) { super(properties); if ((properties == null) || (StringUtils.isBlank(properties.get("organization.name")))) { throw new IllegalArgumentException("Not an organization."); } else { this.services = new Services(); } } /** * Gets the contact email. * * @return the contact email */ public String getContactEmail() { String result; result = get("organization.contact.email"); // return result; } /** * Gets the contact website. * * @return the contact website */ public String getContactWebsite() { String result; result = get("organization.contact.url"); // return result; } /** * Gets the crawled date. * * @return the crawled date */ public LocalDateTime getCrawledDate() { LocalDateTime result; result = LocalDateTime.parse(get("crawl.file.datetime")); // return result; } public String getDescription() { String result; result = get("organization.description"); // return result; } /** * Gets the diaspora page. * * @return the diaspora page */ public String getDiasporaWebpage() { String result; result = get("organization.socialnetworks.diaspora", "organization.socialnetworks.diaspora.url"); // return result; } /** * Gets the end date. * * @return the end date */ public String getEndDate() { String result; result = get("organization.enddate"); // return result; } public Federation getFederation() { return this.federation; } /** * Gets the funkwhale webpage. * * @return the funkwhale webpage */ public String getFunkwhaleWebpage() { String result; result = get("organization.socialnetworks.funkwhale", "organization.socialnetworks.funkwhale.url"); // return result; } public File getInputFile() { return this.inputFile; } /** * Gets the crawled input URL. * * @return the crawled input URL */ public URL getInputURL() { URL result; result = this.inputURL; // return result; } /** * Gets the legal website. * * @return the legal website */ public String getLegalWebsite() { String result; result = get("organization.legal.url", "organization.legal"); // return result; } /** * Gets the logo URL. * * @return the logo URL * @throws MalformedURLException * the malformed URL exception */ public URL getLogoURL() throws MalformedURLException { URL result; String path = get("organization.logo"); if ((StringUtils.isBlank(path)) || (!StringUtils.startsWith(path, "http"))) { result = null; } else { result = new URL(path); } // return result; } /** * Gets the mastodon page. * * @return the mastodon page */ public String getMastodonWebpage() { String result; result = get("organization.socialnetworks.mastodon", "organization.socialnetworks.mastodon.url"); // return result; } /** * Gets the mobilizon webpage. * * @return the mobilizon webpage */ public String getMobilizonWebpage() { String result; result = get("organization.socialnetworks.mobilizon", "organization.socialnetworks.mobilizon.url"); // return result; } /** * Gets the name. * * @return the name */ public String getName() { String result; result = get("organization.name"); // return result; } /** * Gets the peertube webpage. * * @return the peertube webpage */ public String getPeertubeWebpage() { String result; result = get("organization.socialnetworks.peertube", "organization.socialnetworks.peertube.url"); // return result; } /** * Gets the pixelfed webpage. * * @return the pixelfed webpage */ public String getPixelfedWebpage() { String result; result = get("organization.socialnetworks.pixelfed", "organization.socialnetworks.pixelfed.url"); // return result; } /** * Gets the service count. * * @return the service count */ public int getServiceCount() { int result; result = this.services.size(); // return result; } public Services getServices() { return this.services; } /** * Gets the start date. * * @return the start date */ public String getStartDate() { String result; result = get("organization.startdate"); // return result; } /** * Gets the technical doc website. * * @return the technical doc website */ public String getTechnicalDocWebsite() { String result; result = get("organization.documentation.technical", "organization.documentationtechnical.url", "organization.technical", "organization.technical.url", "service.guide.technical", "organization.guide.technical.url"); // return result; } /** * Gets the technical name. * * @return the technical name */ public String getTechnicalName() { String result; result = StatoolInfosUtils.toTechnicalName(getName()); // return result; } /** * Gets the user count. * * @return the user count */ public int getUserCount() { int result; result = 0; // return result; } /** * Gets the user doc website. * * @return the user doc website */ public String getUserDocWebsite() { String result; result = get("organization.documentation", "organization.documentation.url", "organization.documentation.user", "organization.documentation.user.url", "service.documentation.tutorial", "organization.documentation.tutorial.url", "organization.guide.user", "organization.guide.user.url"); // return result; } /** * Gets the website. * * @return the website */ public String getWebsite() { String result; result = get("organization.website"); // return result; } /** * Checks for social network. * * @return true, if successful */ public boolean hasSocialNetwork() { boolean result; if (StringUtils.isAllBlank(getDiasporaWebpage(), getMastodonWebpage())) { result = false; } else { result = true; } // return result; } /** * Checks for social network. * * @param value * the value * @return true, if successful */ public boolean hasSocialNetwork(final SocialNetworks value) { boolean result; String link; switch (value) { case DIASPORA: link = getDiasporaWebpage(); break; case MASTODON: link = getMastodonWebpage(); break; default: link = null; } if (StringUtils.isBlank(link)) { result = false; } else { result = true; } // return result; } public void setFederation(final Federation federation) { this.federation = federation; } public void setInputFile(final File inputFile) { this.inputFile = inputFile; } public void setInputURL(final URL inputURL) { this.inputURL = inputURL; } }