package.json
|
+5
|
-0
|
src/backend/src/config/config.ts
|
+2
|
-1
|
src/backend/src/distributed-events/distributed-event-manager.ts
|
+3
|
-3
|
src/backend/src/main/authenticated-application-main.ts
|
+34
|
-33
|
src/backend/src/main/main.ts
|
+11
|
-9
|
src/backend/src/main/managed-main.ts
|
+10
|
-8
|
src/backend/src/main/manager-main.ts
|
+12
|
-9
|
src/backend/src/main/per-user-handlers-main.ts
|
+57
|
-59
|
src/backend/src/main/twitch-per-user-pubsub-api.ts
|
+13
|
-11
|
src/backend/src/main/twitch-pubsub-authenticated-application-api.ts
|
+6
|
-6
|
src/backend/src/storage/database-connection.ts
|
+2
|
-1
|
src/backend/src/storage/idistributed-event.ts
|
+1
|
-1
|
src/backend/src/storage/iuser.ts
|
+1
|
-1
|
src/backend/src/storage/manager/distributed-event-storage-manager.ts
|
+1
|
-2
|
src/backend/src/storage/manager/user-storage-manager.ts
|
+5
|
-3
|
src/backend/src/twitch/authentication/application-token-manager.ts
|
+6
|
-3
|
src/backend/src/twitch/authentication/polling-application-token-connection.ts
|
+4
|
-2
|
src/backend/src/twitch/authentication/provider-types.ts
|
+1
|
-1
|
src/backend/src/twitch/authentication/user-token-manager.ts
|
+5
|
-2
|
src/backend/src/twitch/helper/csrf-helper.ts
|
+1
|
-1
|
src/backend/src/twitch/helper/request-helper.ts
|
+1
|
-1
|
src/backend/src/twitch/helper/token-helper.ts
|
+5
|
-3
|
src/backend/src/twitch/helper/user-helper.ts
|
+1
|
-1
|
src/backend/src/twitch/helper/user-token-helper.ts
|
+7
|
-3
|
src/backend/src/twitch/irc/event-handler/incoming-irc-command-event-translator.ts
|
+2
|
-2
|
src/backend/src/twitch/irc/event-handler/outgoing-irc-command-event-handler.ts
|
+3
|
-3
|
src/backend/src/twitch/irc/handler/follow-reminder.ts
|
+5
|
-4
|
src/backend/src/twitch/irc/handler/greeting.ts
|
+7
|
-4
|
src/backend/src/twitch/irc/handler/logging.ts
|
+3
|
-3
|
src/backend/src/twitch/irc/handler/new-chatter.ts
|
+5
|
-4
|
src/backend/src/twitch/irc/handler/ping.ts
|
+5
|
-4
|
src/backend/src/twitch/irc/handler/reconnect.ts
|
+1
|
-1
|
src/backend/src/twitch/irc/handler/subscribing.ts
|
+4
|
-4
|
src/backend/src/twitch/irc/handler/text-response-command.ts
|
+5
|
-4
|
src/backend/src/twitch/irc/handler/vidy-command.ts
|
+6
|
-5
|
src/backend/src/twitch/irc/handler/vidy-result-event.ts
|
+6
|
-5
|
src/backend/src/twitch/irc/irc-connection.ts
|
+1
|
-1
|
src/backend/src/twitch/irc/irc-manager.ts
|
+2
|
-2
|
src/backend/src/twitch/polling/connection/polling-clientid-connection.ts
|
+2
|
-1
|
src/backend/src/twitch/polling/event-handler/incoming-cheering-event-translator.ts
|
+8
|
-5
|
src/backend/src/twitch/polling/event-handler/incoming-cheermotes-event-translator.ts
|
+6
|
-3
|
src/backend/src/twitch/polling/event-handler/incoming-following-event-translator.ts
|
+6
|
-3
|
src/backend/src/twitch/polling/event-handler/incoming-polling-event-translator.ts
|
+6
|
-2
|
src/backend/src/twitch/polling/event-handler/incoming-pubsub-event-translator.ts
|
+2
|
-2
|
src/backend/src/twitch/polling/event-handler/incoming-streaming-event-translator.ts
|
+6
|
-3
|
src/backend/src/twitch/polling/event-handler/incoming-subscription-event-translator.ts
|
+6
|
-3
|
src/backend/src/twitch/polling/event-handler/incoming-whisper-event-translator.ts
|
+11
|
-5
|
src/backend/src/twitch/polling/event/iincoming-polling-event.ts
|
+1
|
-1
|
src/backend/src/twitch/polling/handler/cheering-irc-reply-handler.ts
|
+8
|
-5
|
src/backend/src/twitch/polling/handler/cheering-with-cheermotes-handler.ts
|
+15
|
-8
|
src/backend/src/twitch/polling/handler/following-Irc-reply-handler.ts
|
+8
|
-5
|
src/backend/src/twitch/polling/handler/streaming-statistics-collector-handler.ts
|
+8
|
-5
|
src/backend/src/twitch/polling/handler/subscription-irc-reply-handler.ts
|
+8
|
-5
|
src/backend/src/twitch/polling/handler/whisper-irc-reply-handler.ts
|
+8
|
-6
|
src/backend/src/twitch/polling/ipolling-connection.ts
|
+3
|
-4
|
src/backend/src/twitch/polling/polling-connection.ts
|
+3
|
-1
|
src/backend/src/twitch/polling/polling-manager.ts
|
+3
|
-3
|
src/backend/src/twitch/pubsub/handler/logging.ts
|
+1
|
-1
|
src/backend/src/twitch/pubsub/handler/ping.ts
|
+1
|
-1
|
src/backend/src/twitch/pubsub/handler/reconnect.ts
|
+1
|
-1
|
src/backend/src/twitch/pubsub/pubsub-connection.ts
|
+1
|
-1
|
src/backend/src/twitch/pubsub/pubsub-manager.ts
|
+2
|
-2
|
src/backend/src/twitch/websocket/iwebsocket-connection.ts
|
+2
|
-2
|
src/backend/src/twitch/websocket/websocket-connection.ts
|
+1
|
-1
|
src/backend/vidy/outgoing-search-command-handler.ts
|
+9
|
-8
|
src/backend/vidy/request/authenticated-request.ts
|
+1
|
-1
|
src/frontend/src/config/config.ts
|
+2
|
-1
|
src/frontend/src/main/main.ts
|
+3
|
-3
|
src/frontend/src/main/managed-main.ts
|
+3
|
-3
|
src/frontend/src/main/manager-main.ts
|
+11
|
-13
|
src/{backend => interface}/src/twitch/authentication/iaugmented-token.ts
|
+0
|
-0
|
src/{backend => interface}/src/twitch/authentication/iraw-token.ts
|
+0
|
-0
|
src/{backend/src/twitch/polling/handler => interface/src/twitch/event}/Icheertoken-with-cheermotes-url.ts
|
+0
|
-0
|
src/{backend/src/twitch/polling => interface/src/twitch}/event/ichannel-event.ts
|
+2
|
-2
|
src/{backend/src/twitch/polling => interface/src/twitch}/event/iincoming-cheering-event.ts
|
+0
|
-0
|
src/{backend/src/twitch/polling => interface/src/twitch}/event/iincoming-cheering-with-cheermotes-event.ts
|
+1
|
-1
|
src/{backend/src/twitch/polling => interface/src/twitch}/event/iincoming-cheermotes-event.ts
|
+7
|
-1
|
src/{backend/src/twitch/polling => interface/src/twitch}/event/iincoming-following-event.ts
|
+0
|
-0
|
src/{backend/src/twitch/polling => interface/src/twitch}/event/iincoming-streaming-event.ts
|
+1
|
-4
|
src/{backend/src/twitch/polling => interface/src/twitch}/event/iincoming-subscription-event.ts
|
+0
|
-0
|
src/{backend/src/twitch/polling => interface/src/twitch}/event/iincoming-whisper-event.ts
|
+0
|
-0
|
src/{backend/src/twitch/polling => interface/src/twitch}/event/iuser-channel-event.ts
|
+0
|
-0
|
src/{backend/src/twitch/polling => interface/src/twitch}/event/iuser-event.ts
|
+2
|
-2
|
src/{backend/src/twitch/polling => interface/src/twitch}/event/iuser-name-id.ts
|
+0
|
-0
|
src/{backend/src/twitch/polling => interface/src/twitch}/event/iuser-to-user-event.ts
|
+0
|
-0
|
src/{backend => interface/src}/vidy/command/iincoming-search-result-event.ts
|
+0
|
-0
|
src/{backend => interface/src}/vidy/command/ioutgoing-search-command.ts
|
+0
|
-0
|
src/shared/src/connection/connection-manager.ts
|
+1
|
-1
|
src/shared/src/connection/multi-connection-manager.ts
|
+1
|
-1
|
src/shared/src/event/event-subscription-manager.ts
|
+1
|
-1
|
src/shared/src/event/multi-event-subscription-manager.ts
|
+1
|
-1
|
src/shared/src/message-queue/intersection-topics-subscriber.ts
|
+1
|
-1
|
src/shared/src/message-queue/item-array-json-topics-subscriber.ts
|
+1
|
-1
|
src/shared/src/message-queue/json-topics-subscriber.ts
|
+1
|
-1
|
src/shared/src/message-queue/publisher.ts
|
+1
|
-1
|
src/shared/src/message-queue/raw-topics-subscriber.ts
|
+1
|
-1
|
src/shared/src/message-queue/single-item-topics-subscriber.ts
|
+1
|
-1
|
src/shared/src/message-queue/topic-publisher.ts
|
+1
|
-1
|
src/shared/src/message-queue/topics-subscriber.ts
|
+3
|
-3
|
src/shared/src/util/create-root-logger.ts
|
+1
|
-1
|
tsconfig.json
|
+18
|
-0
|