Skip to content

Commit 36258cc

Browse files
authored
Merge pull request #4 from rdavydov/switchable
Switchable Analytics
2 parents 834745d + b815d92 commit 36258cc

File tree

5 files changed

+63
-26
lines changed

5 files changed

+63
-26
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -571,6 +571,14 @@ The chart provides some annotation to handle the prediction and watch strike eve
571571
On each (x, y) points Its present a tooltip that show points, date time and reason of points gained / lost. This web page was just a funny idea, and it is not intended to use for a professional usage.
572572
If you want you can toggle the dark theme with the dedicated checkbox.
573573

574+
### `enableAnalytics.py` file in the main directory toggles Analytics
575+
Disabling Analytics significantly reduces memory consumption and saves some disk space.
576+
577+
- Remove this file if you don't need Analytics. Or rename it to something different, like `disableAnalytics.py`.
578+
- To enable Analytics back - just create this file again. Or rename it back to `enableAnalytics.py`.
579+
580+
This file can be empty.
581+
574582
| Light theme | Dark theme |
575583
| ----------- | ---------- |
576584
| ![Light theme](https://raw.githubusercontent.com/Tkd-Alex/Twitch-Channel-Points-Miner-v2/master/assets/chart-analytics-light.png) | ![Dark theme](https://raw.githubusercontent.com/Tkd-Alex/Twitch-Channel-Points-Miner-v2/master/assets/chart-analytics-dark.png) |

TwitchChannelPointsMiner/TwitchChannelPointsMiner.py

+30-16
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
from datetime import datetime
1212
from pathlib import Path
1313

14-
from TwitchChannelPointsMiner.classes.AnalyticsServer import AnalyticsServer
1514
from TwitchChannelPointsMiner.classes.Chat import ChatPresence, ThreadChat
1615
from TwitchChannelPointsMiner.classes.entities.PubsubTopic import PubsubTopic
1716
from TwitchChannelPointsMiner.classes.entities.Streamer import (
@@ -32,6 +31,17 @@
3231
set_default_settings,
3332
)
3433

34+
disableAnalytics = False
35+
36+
try:
37+
import enableAnalytics
38+
except ImportError:
39+
disableAnalytics = True
40+
41+
# Analytics switch
42+
if disableAnalytics is False:
43+
from TwitchChannelPointsMiner.classes.AnalyticsServer import AnalyticsServer
44+
3545
# Suppress:
3646
# - chardet.charsetprober - [feed]
3747
# - chardet.charsetprober - [get_confidence]
@@ -79,8 +89,10 @@ def __init__(
7989
# Default values for all streamers
8090
streamer_settings: StreamerSettings = StreamerSettings(),
8191
):
82-
Settings.analytics_path = os.path.join(Path().absolute(), "analytics", username)
83-
Path(Settings.analytics_path).mkdir(parents=True, exist_ok=True)
92+
# Analytics switch
93+
if disableAnalytics is False:
94+
Settings.analytics_path = os.path.join(Path().absolute(), "analytics", username)
95+
Path(Settings.analytics_path).mkdir(parents=True, exist_ok=True)
8496

8597
self.username = username
8698

@@ -126,19 +138,21 @@ def __init__(
126138
for sign in [signal.SIGINT, signal.SIGSEGV, signal.SIGTERM]:
127139
signal.signal(sign, self.end)
128140

129-
def analytics(
130-
self,
131-
host: str = "127.0.0.1",
132-
port: int = 5000,
133-
refresh: int = 5,
134-
days_ago: int = 7,
135-
):
136-
http_server = AnalyticsServer(
137-
host=host, port=port, refresh=refresh, days_ago=days_ago
138-
)
139-
http_server.daemon = True
140-
http_server.name = "Analytics Thread"
141-
http_server.start()
141+
# Analytics switch
142+
if disableAnalytics is False:
143+
def analytics(
144+
self,
145+
host: str = "127.0.0.1",
146+
port: int = 5000,
147+
refresh: int = 5,
148+
days_ago: int = 7,
149+
):
150+
http_server = AnalyticsServer(
151+
host=host, port=port, refresh=refresh, days_ago=days_ago
152+
)
153+
http_server.daemon = True
154+
http_server.name = "Analytics Thread"
155+
http_server.start()
142156

143157
def mine(
144158
self,

TwitchChannelPointsMiner/classes/WebSocketsPool.py

+20-9
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@
1717
internet_connection_available,
1818
)
1919

20+
disableAnalytics = False
21+
22+
try:
23+
import enableAnalytics
24+
except ImportError:
25+
disableAnalytics = True
26+
2027
logger = logging.getLogger(__name__)
2128

2229

@@ -170,19 +177,21 @@ def on_message(ws, message):
170177

171178
ws.last_message_timestamp = message.timestamp
172179
ws.last_message_type_channel = message.identifier
173-
180+
174181
streamer_index = get_streamer_index(ws.streamers, message.channel_id)
175182
if streamer_index != -1:
176183
try:
177184
if message.topic == "community-points-user-v1":
178185
if message.type in ["points-earned", "points-spent"]:
179186
balance = message.data["balance"]["balance"]
180187
ws.streamers[streamer_index].channel_points = balance
181-
ws.streamers[streamer_index].persistent_series(
182-
event_type=message.data["point_gain"]["reason_code"]
183-
if message.type == "points-earned"
184-
else "Spent"
185-
)
188+
# Analytics switch
189+
if disableAnalytics is False:
190+
ws.streamers[streamer_index].persistent_series(
191+
event_type=message.data["point_gain"]["reason_code"]
192+
if message.type == "points-earned"
193+
else "Spent"
194+
)
186195

187196
if message.type == "points-earned":
188197
earned = message.data["point_gain"]["total_points"]
@@ -198,9 +207,11 @@ def on_message(ws, message):
198207
ws.streamers[streamer_index].update_history(
199208
reason_code, earned
200209
)
201-
ws.streamers[streamer_index].persistent_annotations(
202-
reason_code, f"+{earned} - {reason_code}"
203-
)
210+
# Analytics switch
211+
if disableAnalytics is False:
212+
ws.streamers[streamer_index].persistent_annotations(
213+
reason_code, f"+{earned} - {reason_code}"
214+
)
204215
elif message.type == "claim-available":
205216
ws.twitch.claim_bonus(
206217
ws.streamers[streamer_index],

TwitchChannelPointsMiner/logger.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class LoggerSettings:
6868
"color_palette",
6969
"auto_clear",
7070
"telegram",
71-
"discord",
71+
"discord"
7272
]
7373

7474
def __init__(

enableAnalytics.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Significantly reduces memory consumption and saves some disk space.
2+
# Remove this file if you don't need Analytics. Or rename it to something different, like "disableAnalytics.py".
3+
# To enable Analytics back - just create this file again. Or rename it back to "enableAnalytics.py".
4+
# This file can be empty.

0 commit comments

Comments
 (0)