|
11 | 11 | from datetime import datetime
|
12 | 12 | from pathlib import Path
|
13 | 13 |
|
14 |
| -from TwitchChannelPointsMiner.classes.AnalyticsServer import AnalyticsServer |
15 | 14 | from TwitchChannelPointsMiner.classes.Chat import ChatPresence, ThreadChat
|
16 | 15 | from TwitchChannelPointsMiner.classes.entities.PubsubTopic import PubsubTopic
|
17 | 16 | from TwitchChannelPointsMiner.classes.entities.Streamer import (
|
|
32 | 31 | set_default_settings,
|
33 | 32 | )
|
34 | 33 |
|
| 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 | + |
35 | 45 | # Suppress:
|
36 | 46 | # - chardet.charsetprober - [feed]
|
37 | 47 | # - chardet.charsetprober - [get_confidence]
|
@@ -79,8 +89,10 @@ def __init__(
|
79 | 89 | # Default values for all streamers
|
80 | 90 | streamer_settings: StreamerSettings = StreamerSettings(),
|
81 | 91 | ):
|
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) |
84 | 96 |
|
85 | 97 | self.username = username
|
86 | 98 |
|
@@ -126,19 +138,21 @@ def __init__(
|
126 | 138 | for sign in [signal.SIGINT, signal.SIGSEGV, signal.SIGTERM]:
|
127 | 139 | signal.signal(sign, self.end)
|
128 | 140 |
|
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() |
142 | 156 |
|
143 | 157 | def mine(
|
144 | 158 | self,
|
|
0 commit comments