1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* track scripting usage count

This commit is contained in:
Reinhard Pointner 2011-10-30 10:36:40 +00:00
parent 093ba200b6
commit f7719ccd86
2 changed files with 14 additions and 4 deletions

View File

@ -26,10 +26,12 @@ public class Analytics {
private static final String TIMESTAMP_LAST = "timestampLast";
private static final String VISITS = "visits";
private static final String host = "filebot.sourceforge.net";
private static final VisitorData visitorData = restoreVisitorData();
private static final JGoogleAnalyticsTracker tracker = new JGoogleAnalyticsTracker(getConfig(getApplicationProperty("analytics.WebPropertyID"), visitorData), V_4_7_2);
private static final String host = "filebot.sourceforge.net";
private static String currentView = null;
public static void trackView(Class<?> view, String title) {
trackView(view.getName().replace('.', '/'), title);
@ -40,8 +42,15 @@ public class Analytics {
if (!tracker.isEnabled())
return;
// track application startup
tracker.trackPageViewFromSearch(view, title, host, getJavaVersionIdentifier(), getDeploymentMethod());
if (currentView == null) {
// track application startup
tracker.trackPageViewFromSearch(view, title, host, getJavaVersionIdentifier(), getDeploymentMethod());
} else {
// track application state change
tracker.trackPageViewFromReferrer(view, title, host, host, currentView);
}
currentView = view;
}
@ -211,7 +220,7 @@ public class Analytics {
/**
* Dummy constructor to prevent instantiation.
* Dummy constructor to prevent instantiation
*/
private Analytics() {
throw new UnsupportedOperationException();

View File

@ -79,6 +79,7 @@ public class ArgumentProcessor {
Bindings bindings = new SimpleBindings();
bindings.put("args", args.getFiles(false));
Analytics.trackEvent("CLI", "ExecuteScript", args.getScriptLocation().getProtocol());
ScriptShell shell = new ScriptShell(cli, args, AccessController.getContext());
shell.evaluate(script, bindings);
}