summaryrefslogtreecommitdiff
path: root/include/modules/stats.h
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2018-04-07 15:07:24 +0100
committerPeter Powell <petpow@saberuk.com>2018-04-08 16:54:27 +0100
commit454c8d374955d2ffb3ec1fca39a6efc32032c649 (patch)
treeeba7066c77408fb909c74154bcf52df34c0911a9 /include/modules/stats.h
parent8c0426116cdf09e807da12b6b23d977c4a073119 (diff)
Move OnStats from the core to a cross-module event.
Some core code still exists in the XLine system but this will be replaced when the XLine system is replaced later.
Diffstat (limited to 'include/modules/stats.h')
-rw-r--r--include/modules/stats.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/modules/stats.h b/include/modules/stats.h
index d2f6eabbb..e69070c9f 100644
--- a/include/modules/stats.h
+++ b/include/modules/stats.h
@@ -19,12 +19,30 @@
#pragma once
+#include "event.h"
+
namespace Stats
{
class Context;
+ class EventListener;
class Row;
}
+class Stats::EventListener : public Events::ModuleEventListener
+{
+ public:
+ EventListener(Module* mod)
+ : ModuleEventListener(mod, "event/stats")
+ {
+ }
+
+ /** Called when the STATS command is executed.
+ * @param stats Context of the /STATS request, contains requesting user, list of answer rows etc.
+ * @return MOD_RES_DENY if the stats request has been fulfilled. Otherwise, MOD_RES_PASSTHRU.
+ */
+ virtual ModResult OnStats(Stats::Context& stats) = 0;
+};
+
class Stats::Row : public Numeric::Numeric
{
public: