File size: 14,959 Bytes
27867f1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 |
"""
MIT License
Copyright (C) 2023 ROCKY4546
https://github.com/rocky4546
This file is part of Cabernet
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
and associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute,
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software
is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or
substantial portions of the Software.
"""
import ast
import json
import datetime
import sqlite3
import threading
from lib.db.db import DB
from lib.common.decorators import Backup
from lib.common.decorators import Restore
DB_CHANNELS_TABLE = 'channels'
DB_STATUS_TABLE = 'status'
DB_ZONE_TABLE = 'zones'
DB_CATEGORIES_TABLE = 'categories'
DB_CONFIG_NAME = 'db_files-channels_db'
sqlcmds = {
'ct': [
"""
CREATE TABLE IF NOT EXISTS channels (
namespace VARCHAR(255) NOT NULL,
instance VARCHAR(255) NOT NULL,
enabled BOOLEAN NOT NULL,
uid VARCHAR(255) NOT NULL,
number VARCHAR(255) NOT NULL,
display_number VARCHAR(255) NOT NULL,
display_name VARCHAR(255) NOT NULL,
group_tag VARCHAR(255),
updated BOOLEAN NOT NULL,
thumbnail VARCHAR(255),
thumbnail_size VARCHAR(255),
atsc VARCHAR(1500),
json TEXT NOT NULL,
UNIQUE(namespace, instance, uid)
)
""",
"""
CREATE TABLE IF NOT EXISTS status (
namespace VARCHAR(255) NOT NULL,
instance VARCHAR(255),
last_update TIMESTAMP,
UNIQUE(namespace, instance)
)
""",
"""
CREATE TABLE IF NOT EXISTS categories (
namespace VARCHAR(255) NOT NULL,
instance VARCHAR(255),
uid VARCHAR(255) NOT NULL,
category VARCHAR(255) NOT NULL
)
""",
"""
CREATE TABLE IF NOT EXISTS zones (
namespace VARCHAR(255) NOT NULL,
instance VARCHAR(255),
uid VARCHAR(255) NOT NULL,
name VARCHAR(255) NOT NULL,
UNIQUE(namespace, instance, uid)
)
"""
],
'dt': [
"""
DROP TABLE IF EXISTS channels
""",
"""
DROP TABLE IF EXISTS status
""",
"""
DROP TABLE IF EXISTS categories
""",
"""
DROP TABLE IF EXISTS zones
"""
],
'channels_add':
"""
INSERT INTO channels (
namespace, instance, enabled, uid, number, display_number, display_name,
group_tag, thumbnail, thumbnail_size, updated, json
) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )
""",
'channels_update':
"""
UPDATE channels SET
number=?, updated=?, json=?
WHERE namespace=? AND instance=? AND uid=?
""",
'channels_editable_update':
"""
UPDATE channels SET
enabled=?, display_number=?, display_name=?, group_tag=?, thumbnail=?, thumbnail_size=?
WHERE namespace=? AND instance=? AND uid=?
""",
'channels_updated_update':
"""
UPDATE channels SET updated = False WHERE namespace=? AND instance=?
""",
'channels_atsc_update':
"""
UPDATE channels SET
atsc=?
WHERE namespace=? AND instance=? AND uid=?
""",
'channels_json_update':
"""
UPDATE channels SET
json=?
WHERE namespace=? AND instance=? AND uid=?
""",
'channels_chnum_update':
"""
UPDATE channels SET
display_number=?
WHERE namespace=? AND instance=? AND uid=?
""",
'channels_num_update':
"""
UPDATE channels SET
number=?
WHERE namespace=? AND instance=? AND uid=?
""",
'channels_del':
"""
DELETE FROM channels WHERE updated LIKE ?
AND namespace LIKE ? AND instance LIKE ?
""",
'channels_get':
"""
SELECT * FROM channels WHERE namespace LIKE ?
AND instance LIKE ? AND enabled LIKE ?
ORDER BY CAST(number as FLOAT), namespace, instance
""",
'channels_one_get':
"""
SELECT * FROM channels WHERE uid=? AND namespace LIKE ?
AND instance LIKE ?
""",
'channels_name_get':
"""
SELECT DISTINCT namespace FROM channels
""",
'channels_instance_get':
"""
SELECT DISTINCT namespace,instance FROM channels
""",
'status_add':
"""
INSERT OR REPLACE INTO status (
namespace, instance, last_update
) VALUES ( ?, ?, ? )
""",
'status_get':
"""
SELECT datetime(last_update, 'localtime') FROM status WHERE
namespace=? AND instance=?
""",
'status_del':
"""
DELETE FROM status WHERE
namespace LIKE ? AND instance LIKE ?
""",
'zones_add':
"""
INSERT OR REPLACE INTO zones (
namespace, instance, uid, name
) VALUES ( ?, ?, ?, ? )
""",
'zones_get':
"""
SELECT uid, name FROM zones WHERE
namespace=? AND instance=?
"""
}
class DBChannels(DB):
def __init__(self, _config):
super().__init__(_config, _config['datamgmt'][DB_CONFIG_NAME], sqlcmds)
def save_channel_list(self, _namespace, _instance, _ch_dict, save_edit_groups=True):
"""
Assume the list is complete and will remove any old channels not updated
"""
if _instance is None or _namespace is None:
self.logger.warning(
'Saving Channel List: Namespace or Instance is None {}:{}'
.format(_namespace, _instance))
self.update(DB_CHANNELS_TABLE + '_updated', (_namespace, _instance,))
for ch in _ch_dict:
if save_edit_groups:
edit_groups = ch['groups_other']
else:
edit_groups = None
try:
self.add(DB_CHANNELS_TABLE, (
_namespace,
_instance,
ch['enabled'],
ch['id'],
ch['number'],
ch['number'],
ch['name'],
edit_groups,
ch['thumbnail'],
str(ch['thumbnail_size']),
True,
json.dumps(ch)))
except sqlite3.IntegrityError as ex:
# record already present. Check the editable fields and update as needed
ch_stored = self.get_channel(ch['id'], _namespace, _instance)
ch_stored['enabled'] = ch['enabled']
ch_stored['display_name'] = ch['display_name']
ch_stored['group_tag'] = ch['groups_other']
ch_stored['thumbnail'] = ch['thumbnail']
ch_stored['thumbnail_size'] = ch['thumbnail_size']
self.update_channel(ch_stored)
self.update(DB_CHANNELS_TABLE, (
ch['number'],
True,
json.dumps(ch),
_namespace,
_instance,
ch['id']
))
except sqlite3.InterfaceError as ex:
self.logger.warning('InterfaceError: Bind data: {} : {} : ({}){} : {} : {} : {}'.format( \
ch['id'], ch['number'], type(ch['name']), ch['name'], edit_groups, \
ch['thumbnail'], str(ch['thumbnail_size']) ))
raise ex
self.add(DB_STATUS_TABLE, (
_namespace, _instance, datetime.datetime.now()))
self.delete(DB_CHANNELS_TABLE, (False, _namespace, _instance,))
def update_channel(self, _ch):
"""
Updates the editable fields for one channel
"""
self.update(DB_CHANNELS_TABLE + '_editable', (
_ch['enabled'],
_ch['display_number'],
_ch['display_name'],
_ch['group_tag'],
_ch['thumbnail'],
str(_ch['thumbnail_size']),
_ch['namespace'],
_ch['instance'],
_ch['uid']
))
def del_channels(self, _namespace, _instance):
if not _namespace:
_namespace = '%'
if not _instance:
_instance = '%'
return self.delete(DB_CHANNELS_TABLE, ('%', _namespace, _instance,))
def del_status(self, _namespace=None, _instance=None):
if not _namespace:
_namespace = '%'
if not _instance:
_instance = '%'
return self.delete(DB_STATUS_TABLE, (_namespace, _instance,))
def get_status(self, _namespace, _instance):
result = self.get(DB_STATUS_TABLE, (_namespace, _instance))
if result:
last_update = result[0][0]
if last_update is not None:
return datetime.datetime.fromisoformat(last_update)
else:
return None
else:
return None
def get_channels(self, _namespace, _instance, _enabled=None):
if not _namespace:
_namespace = '%'
if not _instance:
_instance = '%'
if _enabled is None:
_enabled = '%'
rows_dict = {}
rows = self.get_dict(DB_CHANNELS_TABLE, (_namespace, _instance, _enabled))
if rows is None:
return None
for row in rows:
ch = json.loads(row['json'])
row['json'] = ch
row['thumbnail_size'] = ast.literal_eval(row['thumbnail_size'])
if row['atsc'] is not None:
row['atsc'] = ast.literal_eval(row['atsc'])
# handles the uid multiple times across instances
if row['uid'] in rows_dict.keys():
rows_dict[row['uid']].append(row)
else:
rows_dict[row['uid']] = []
rows_dict[row['uid']].append(row)
return rows_dict
def get_channel_names(self):
return self.get_dict(DB_CHANNELS_TABLE + '_name')
def get_channel_instances(self):
return self.get_dict(DB_CHANNELS_TABLE + '_instance')
def get_channel(self, _uid, _namespace, _instance):
if not _namespace:
_namespace = '%'
if not _instance:
_instance = '%'
rows = self.get_dict(DB_CHANNELS_TABLE + '_one', (_uid, _namespace, _instance,))
if rows:
for row in rows:
ch = json.loads(row['json'])
row['json'] = ch
if row['atsc'] is not None:
row['atsc'] = ast.literal_eval(row['atsc'])
return row
return None
def update_channel_atsc(self, _ch):
"""
Updates the atsc field for one channel
"""
atsc_str = str(_ch['atsc'])
self.update(DB_CHANNELS_TABLE + '_atsc', (
atsc_str,
_ch['namespace'],
_ch['instance'],
_ch['uid']
))
def update_channel_json(self, _ch, _namespace, _instance):
"""
Updates the json field for one channel
"""
json_str = json.dumps(_ch)
self.update(DB_CHANNELS_TABLE + '_json', (
json_str,
_namespace,
_instance,
_ch['id']
))
def update_channel_number(self, _ch):
"""
Updates the display_number field for one channel
"""
display_number = str(_ch['display_number'])
self.update(DB_CHANNELS_TABLE + '_chnum', (
display_number,
_ch['namespace'],
_ch['instance'],
_ch['uid']
))
def update_number(self, _ch):
"""
Updates the display_number field for one channel
"""
number = str(_ch['number'])
self.update(DB_CHANNELS_TABLE + '_num', (
number,
_ch['namespace'],
_ch['instance'],
_ch['uid']
))
def get_sorted_channels(self, _namespace, _instance,
_first_sort_key=[None, True], _second_sort_key=[None, True]):
"""
Using dynamic SQl to create a SELECT statement and send to the DB
keys are [name_of_column, direction_asc=True]
"""
where = ' WHERE namespace LIKE ? AND instance LIKE ? '
orderby_front = ' ORDER BY '
orderby_end = ' CAST(number as FLOAT), namespace, instance '
orderby1 = self.get_channels_orderby(_first_sort_key[0], _first_sort_key[1])
orderby2 = self.get_channels_orderby(_second_sort_key[0], _second_sort_key[1])
sqlcmd = ''.join(['SELECT * FROM channels ', where, orderby_front, orderby1, orderby2, orderby_end])
if not _namespace:
_namespace = '%'
if not _instance:
_instance = '%'
rows = self.get_dict(None, (_namespace, _instance,), sql=sqlcmd)
for row in rows:
ch = json.loads(row['json'])
row['json'] = ch
row['thumbnail_size'] = ast.literal_eval(row['thumbnail_size'])
return rows
def get_channels_orderby(self, _column, _ascending):
str_types = ['namespace', 'instance', 'enabled', 'display_name', 'group_tag', 'thumbnail']
float_types = ['uid', 'display_number']
json_types = ['HD', 'callsign']
if _ascending:
dir_ = 'ASC'
else:
dir_ = 'DESC'
if _column is None:
return ''
elif _column in str_types:
return ''.join([_column, ' ', dir_, ', '])
elif _column in float_types:
return ''.join(['CAST(', _column, ' as FLOAT) ', dir_, ', '])
elif _column in json_types:
return ''.join(['JSON_EXTRACT(json, "$.', _column, '") ', dir_, ', '])
def add_zone(self, _namespace, _instance, _uid, _name):
self.add(DB_ZONE_TABLE, (_namespace, _instance, _uid, _name))
def get_zones(self, _namespace, _instance):
return self.get_dict(DB_ZONE_TABLE, (_namespace, _instance,))
@Backup(DB_CONFIG_NAME)
def backup(self, backup_folder):
self.export_sql(backup_folder)
@Restore(DB_CONFIG_NAME)
def restore(self, backup_folder):
msg = self.import_sql(backup_folder)
if msg is None:
return 'Channels Database Restored'
else:
return msg
|