otsdaq-utilities  3.05.00
ChatSupervisor.h
1 #ifndef _ots_ChatSupervisor_h
2 #define _ots_ChatSupervisor_h
3 
4 #include "otsdaq/CoreSupervisors/CoreSupervisorBase.h"
5 
6 namespace ots
7 {
12 {
13  public:
14  XDAQ_INSTANTIATOR();
15 
16  ChatSupervisor(xdaq::ApplicationStub* s);
17  virtual ~ChatSupervisor(void);
18 
19  void destroy(void);
20 
21  virtual void defaultPage(xgi::Input* in, xgi::Output* out) override;
22  void Default(xgi::Input* in, xgi::Output* out);
23 
24  virtual void request(const std::string& requestType,
25  cgicc::Cgicc& cgiIn,
26  HttpXmlDocument& xmlOut,
27  const WebUsers::RequestUserInfo& userInfo) override;
28 
29  virtual void forceSupervisorPropertyValues(void)
30  override;
31 
32  private:
38  std::vector<std::string> ChatHistoryEntry_, ChatHistoryAuthor_;
39  std::vector<time_t> ChatHistoryTime_;
40  std::vector<uint64_t> ChatHistoryIndex_;
41 
42  uint64_t ChatLastUpdateIndex;
43 
44  std::vector<std::string> ChatUsers_;
45  std::vector<time_t> ChatUsersTime_;
46 
47  std::string chatSupervisorToolsPath_;
48  bool enableSlackChat;
49 
50  enum
51  {
52  CHAT_HISTORY_EXPIRATION_TIME = 30 * 60,
53  CHAT_HISTORY_MAX_ENTRIES = 100,
54  };
55 
56  uint64_t incrementAndGetLastUpdate();
57  bool isLastUpdateIndexStale(uint64_t last);
58  bool isChatOld(uint64_t chatIndex, uint64_t last);
59 
60  void newUser(const std::string& user);
61  void newChat(const std::string& chat, const std::string& user);
62  void sendToSlack(const std::string& user, const std::string& message);
63  void removeChatHistoryEntry(uint64_t i);
64  void removeChatUserEntry(uint64_t i);
65  void cleanupExpiredChats(void);
66 
67  void insertActiveUsers(HttpXmlDocument* xmldoc);
68  void insertChatRefresh(HttpXmlDocument* xmldoc,
69  uint64_t lastUpdateIndex,
70  const std::string& user);
71 
72  void escapeChat(std::string& chat);
73 };
74 } // namespace ots
75 
76 #endif
virtual void request(const std::string &requestType, cgicc::Cgicc &cgiIn, HttpXmlDocument &xmlOut, const WebUsers::RequestUserInfo &userInfo) override
end forceSupervisorPropertyValues()
virtual void forceSupervisorPropertyValues(void) override
override to force supervisor property values (and ignore user settings)