JAL-4001 Added lookup to https://www.jalview.org/config/analytics/url to check API...
[jalview.git] / src / jalview / analytics / Plausible.java
index f0ba59e..daf2d9a 100644 (file)
@@ -35,7 +35,11 @@ public class Plausible
 
   private static final String DOMAIN = "jalview.org";
 
-  private static final String API_BASE_URL = "https://plausible.io/api/event";
+  private static final String CONFIG_API_BASE_URL = "https://www.jalview.org/config/analytics/url";
+
+  private static final String DEFAULT_API_BASE_URL = "https://DEFAULT.plausible.io/api/event";
+
+  private static final String API_BASE_URL;
 
   public static final String APPLICATION_BASE_URL = "desktop://localhost";
 
@@ -43,8 +47,6 @@ public class Plausible
 
   private List<Map.Entry<String, Object>> jsonObject;
 
-  private List<Event> events;
-
   private List<Map.Entry<String, String>> cookieValues;
 
   private static boolean ENABLED = false;
@@ -53,36 +55,39 @@ public class Plausible
 
   private static Plausible instance = null;
 
-  private static final Map<String, String> defaultParams;
+  private static final Map<String, String> defaultProps;
 
   static
   {
-    defaultParams = new HashMap<>();
-    defaultParams.put("app_name",
+    defaultProps = new HashMap<>();
+    defaultProps.put("app_name",
             ChannelProperties.getProperty("app_name") + " Desktop");
-    defaultParams.put("version", Cache.getProperty("VERSION"));
-    defaultParams.put("build_date",
+    defaultProps.put("version", Cache.getProperty("VERSION"));
+    defaultProps.put("build_date",
             Cache.getDefault("BUILD_DATE", "unknown"));
-    defaultParams.put("java_version", System.getProperty("java.version"));
+    defaultProps.put("java_version", System.getProperty("java.version"));
     String val = System.getProperty("sys.install4jVersion");
     if (val != null)
     {
-      defaultParams.put("install4j_version", val);
+      defaultProps.put("install4j_version", val);
     }
     val = System.getProperty("installer_template_version");
     if (val != null)
     {
-      defaultParams.put("install4j_template_version", val);
+      defaultProps.put("install4j_template_version", val);
     }
     val = System.getProperty("launcher_version");
     if (val != null)
     {
-      defaultParams.put("launcher_version", val);
+      defaultProps.put("launcher_version", val);
     }
-    defaultParams.put("java_arch",
+    defaultProps.put("java_arch",
             System.getProperty("os.arch") + " "
                     + System.getProperty("os.name") + " "
                     + System.getProperty("os.version"));
+
+    // ascertain the API_BASE_URL
+    API_BASE_URL = getAPIBaseURL();
   }
 
   private Plausible()
@@ -95,29 +100,28 @@ public class Plausible
     ENABLED = b;
   }
 
-  public void sendEvent(String eventName, String path,
-          String... paramsStrings)
+  public void sendEvent(String eventName, String urlString,
+          String... propsStrings)
   {
-    sendEvent(eventName, path, false, paramsStrings);
+    sendEvent(eventName, urlString, false, propsStrings);
   }
 
   /**
    * The simplest way to send an analytic event.
    * 
    * @param eventName
-   *          The event name. To emulate a webpage view use "page_view" and set
-   *          a "page_location" parameter. See
-   *          https://developers.google.com/analytics/devguides/collection/ga4/events?client_type=gtag
-   * @param sendDefaultParams
-   *          Flag whether to add the default params about the application.
-   * @param paramsStrings
+   *          The event name. To emulate a webpage view use "pageview" and set a
+   *          "url" key/value. See https://plausible.io/docs/events-api
+   * @param sendDefaultProps
+   *          Flag whether to add the default props about the application.
+   * @param propsStrings
    *          Optional multiple Strings in key, value pairs (there should be an
-   *          even number of paramsStrings) to be set as parameters of the
-   *          event. To emulate a webpage view use "page_location" as the URL in
-   *          a "page_view" event.
+   *          even number of propsStrings) to be set as property of the event.
+   *          To emulate a webpage view set "url" as the URL in a "pageview"
+   *          event.
    */
-  public void sendEvent(String eventName, String path,
-          boolean sendDefaultParams, String... paramsStrings)
+  public void sendEvent(String eventName, String urlString,
+          boolean sendDefaultProps, String... propsStrings)
   {
     // clear out old lists
     this.resetLists();
@@ -127,45 +131,44 @@ public class Plausible
       Console.debug("Plausible not enabled.");
       return;
     }
-    Map<String, String> params = new HashMap<>();
+    Map<String, String> props = new HashMap<>();
 
     // add these to all events from this application instance
-    if (sendDefaultParams)
+    if (sendDefaultProps)
     {
-      params.putAll(defaultParams);
+      props.putAll(defaultProps);
       if (Jalview.isHeadlessMode())
       {
-        params.put("headless", "true");
+        props.put("headless", "true");
       }
     }
 
-    // add (and overwrite with) the passed in params
-    if (paramsStrings != null && paramsStrings.length > 0)
+    // add (and overwrite with) the passed in props
+    if (propsStrings != null && propsStrings.length > 0)
     {
-      if (paramsStrings.length % 2 != 0)
+      if (propsStrings.length % 2 != 0)
       {
         Console.warn(
-                "Cannot addEvent with odd number of paramsStrings.  Ignoring the last one.");
+                "Cannot addEvent with odd number of propsStrings.  Ignoring the last one.");
       }
-      for (int i = 0; i < paramsStrings.length - 1; i += 2)
+      for (int i = 0; i < propsStrings.length - 1; i += 2)
       {
-        String key = paramsStrings[i];
-        String value = paramsStrings[i + 1];
-        params.put(key, value);
+        String key = propsStrings[i];
+        String value = propsStrings[i + 1];
+        props.put(key, value);
       }
     }
 
     addJsonValue("domain", DOMAIN);
     addJsonValue("name", eventName);
-    StringBuilder recordedUrlSb = new StringBuilder(APPLICATION_BASE_URL);
-    if (!APPLICATION_BASE_URL.endsWith("/") && !path.startsWith("/"))
+    StringBuilder eventUrlSb = new StringBuilder(APPLICATION_BASE_URL);
+    if (!APPLICATION_BASE_URL.endsWith("/") && !urlString.startsWith("/"))
     {
-      recordedUrlSb.append("/");
+      eventUrlSb.append("/");
     }
-    recordedUrlSb.append(path);
-    addJsonValue("url", recordedUrlSb.toString());
-    addEvent(eventName, params);
-    addJsonObject("props", params);
+    eventUrlSb.append(urlString);
+    addJsonValue("url", eventUrlSb.toString());
+    addJsonObject("props", props);
     StringBuilder urlSb = new StringBuilder();
     urlSb.append(API_BASE_URL);
     String qs = buildQueryString();
@@ -250,20 +253,6 @@ public class Plausible
     }
   }
 
-  public void addEvent(String name, Map<String, String> params)
-  {
-    Event event = new Event(name);
-    if (params != null && params.size() > 0)
-    {
-      for (String key : params.keySet())
-      {
-        String value = params.get(key);
-        event.addParam(key, value);
-      }
-    }
-    events.add(event);
-  }
-
   private void addJsonObject(String key, Map<String, String> map)
   {
     List<Map.Entry<String, ? extends Object>> list = new ArrayList<>();
@@ -314,7 +303,6 @@ public class Plausible
   private void resetLists()
   {
     jsonObject = new ArrayList<>();
-    events = new ArrayList<Event>();
     queryStringValues = new ArrayList<>();
     cookieValues = new ArrayList<>();
   }
@@ -526,4 +514,56 @@ public class Plausible
   {
     return new AbstractMap.SimpleEntry<String, String>(s, v);
   }
+
+  private static String getAPIBaseURL()
+  {
+    try
+    {
+      URL url = new URL(CONFIG_API_BASE_URL);
+      URLConnection urlConnection = url.openConnection();
+      HttpURLConnection httpURLConnection = (HttpURLConnection) urlConnection;
+      httpURLConnection.setRequestMethod("GET");
+      httpURLConnection.setRequestProperty("User-Agent", USER_AGENT);
+      httpURLConnection.setConnectTimeout(5000);
+      httpURLConnection.setReadTimeout(3000);
+      httpURLConnection.connect();
+      int responseCode = httpURLConnection.getResponseCode();
+      String responseMessage = httpURLConnection.getResponseMessage();
+
+      if (responseCode < 200 || responseCode > 299)
+      {
+        Console.warn("Config URL connection to '" + CONFIG_API_BASE_URL
+                + "' failed: '" + responseCode + " " + responseMessage
+                + "'");
+      }
+
+      BufferedReader br = new BufferedReader(
+              new InputStreamReader((httpURLConnection.getInputStream())));
+      StringBuilder sb = new StringBuilder();
+      String response;
+      while ((response = br.readLine()) != null)
+      {
+        sb.append(response);
+      }
+      if (sb.length() > 7 && sb.substring(0, 5).equals("https"))
+      {
+        return sb.toString();
+      }
+
+    } catch (MalformedURLException e)
+    {
+      Console.debug("Somehow the config URL is malformed: '"
+              + CONFIG_API_BASE_URL + "'", e);
+    } catch (IOException e)
+    {
+      Console.debug("Connection to Plausible BASE_URL '" + API_BASE_URL
+              + "' failed.", e);
+    } catch (ClassCastException e)
+    {
+      Console.debug(
+              "Couldn't cast URLConnection to HttpURLConnection in Plausible.",
+              e);
+    }
+    return DEFAULT_API_BASE_URL;
+  }
 }
\ No newline at end of file