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 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687
|
# Deejayd, a media player daemon
# Copyright (C) 2007-2009 Mickael Royer <mickael.royer@gmail.com>
# Alexandre Rossi <alexandre.rossi@gmail.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
import os, sys, time, base64
from deejayd.mediafilters import *
from deejayd.ui import log
from deejayd.database.querybuilders import *
from deejayd.database.dbobjects import SQLizer
############################################################################
class MediaFile(dict):
def __init__(self, db, file_id):
self.db = db
self["media_id"] = file_id
def set_info(self, key, value):
self.set_infos({key: value})
def set_infos(self, infos):
self.db.set_media_infos(self["media_id"], infos)
self.db.connection.commit()
self.update(infos)
def played(self):
played = int(self["playcount"]) + 1
timestamp = int(time.time())
self.set_infos({"playcount":str(played), "lastplayed":str(timestamp)})
def skip(self):
skip = int(self["skipcount"]) + 1
self.set_info("skipcount", str(skip))
def get_cover(self):
if self["type"] != "song":
raise AttributeError
try: (id, mime, cover) = self.db.get_file_cover(self["media_id"])
except TypeError:
raise AttributeError
return {"cover": base64.b64decode(cover), "id":id, "mime": mime}
def replay_gain(self):
"""Return the recommended Replay Gain scale factor."""
try:
db = float(self["replaygain_track_gain"].split()[0])
peak = self["replaygain_track_peak"] and\
float(self["replaygain_track_peak"]) or 1.0
except (KeyError, ValueError, IndexError):
return 1.0
else:
scale = 10.**(db / 20)
if scale * peak > 1:
scale = 1.0 / peak # don't clip
return min(15, scale)
############################################################################
class DatabaseQueries(object):
structure_created = False
def __init__(self, connection):
self.connection = connection
self.sqlizer = SQLizer()
#
# MediaDB requests
#
@query_decorator("lastid")
def insert_file(self, cursor, dir, filename, lastmodified):
query = "INSERT INTO library \
(directory,name,lastmodified)VALUES(%s, %s, %s)"
cursor.execute(query, (dir, filename, lastmodified))
@query_decorator("none")
def update_file(self, cursor, id, lastmodified):
query = "UPDATE library SET lastmodified = %s WHERE id = %s"
cursor.execute(query, (lastmodified, id))
@query_decorator("rowcount")
def set_media_infos(self, cursor, file_id, infos, allow_create = True):
if allow_create:
query = "REPLACE INTO media_info (id,ikey,value)VALUES(%s,%s,%s)"
entries = [(file_id, k, v) for k, v in infos.items()]
else:
query = "UPDATE media_info SET value=%s WHERE id=%s and ikey=%s"
entries = [(v, file_id, k) for k, v in infos.items()]
cursor.executemany(query, entries)
@query_decorator("none")
def remove_file(self, cursor, id):
queries = [
"DELETE FROM library WHERE id = %s",
"DELETE FROM media_info WHERE id = %s",
"DELETE FROM medialist_libraryitem WHERE libraryitem_id = %s",
]
for q in queries: cursor.execute(q, (id,))
@query_decorator("fetchone")
def is_file_exist(self, cursor, dirname, filename, type = "audio"):
query = "SELECT d.id, l.id \
FROM library l JOIN library_dir d ON d.id=l.directory\
WHERE l.name = %s AND d.name = %s AND d.lib_type = %s"
cursor.execute(query,(filename, dirname, type))
@query_decorator("lastid")
def insert_dir(self, cursor, new_dir, type="audio"):
query = "INSERT INTO library_dir (name,type,lib_type)VALUES(%s,%s,%s)"
cursor.execute(query, (new_dir, 'directory', type))
@query_decorator("none")
def remove_dir(self, cursor, id):
cursor.execute("SELECT id FROM library WHERE directory = %s", (id,))
for (id,) in cursor.fetchall():
self.remove_file(id)
cursor.execute("DELETE FROM library_dir WHERE id = %s", (id,))
@query_decorator("none")
def remove_recursive_dir(self, cursor, dir, type="audio"):
files = self.get_all_files(dir, type)
for file in files: self.remove_file(file[2])
cursor.execute("DELETE FROM library_dir\
WHERE name LIKE %s AND lib_type = %s", (dir+u"%%", type))
return [f[2] for f in files]
@query_decorator("custom")
def is_dir_exist(self, cursor, dirname, type):
cursor.execute("SELECT id FROM library_dir\
WHERE name=%s AND lib_type=%s", (dirname, type))
rs = cursor.fetchone()
return rs and rs[0]
@query_decorator("none")
def insert_dirlink(self, cursor, new_dirlink, type="audio"):
query = "INSERT INTO library_dir (name,type,lib_type)VALUES(%s,%s,%s)"
cursor.execute(query, (new_dirlink, "dirlink", type))
@query_decorator("none")
def remove_dirlink(self, cursor, dirlink, type="audio"):
query = "DELETE FROM library_dir\
WHERE name = %s AND\
type = 'dirlink' AND\
lib_type = %s"
cursor.execute(query, (dirlink, type))
@query_decorator("fetchall")
def get_dir_list(self, cursor, dir, t = "audio"):
query = "SELECT DISTINCT id, name FROM library_dir\
WHERE name LIKE %s AND\
lib_type = %s AND\
type = 'directory'\
ORDER BY name"
term = dir == unicode("") and u"%%" or dir+unicode("/%%")
cursor.execute(query, (term, t))
@query_decorator("fetchone")
def get_file_info(self, cursor, file_id, info_type):
query = "SELECT value FROM media_info WHERE id = %s AND ikey = %s"
cursor.execute(query, (file_id, info_type))
@query_decorator("fetchall")
def get_all_files(self, cursor, dir, type = "audio"):
query = "SELECT DISTINCT d.id, d.name, l.id, l.name, l.lastmodified\
FROM library l JOIN library_dir d ON d.id=l.directory\
WHERE d.name LIKE %s AND d.lib_type = %s ORDER BY d.name,l.name"
cursor.execute(query,(dir+u"%%", type))
@query_decorator("fetchall")
def get_all_dirs(self, cursor, dir, type = "audio"):
query = "SELECT DISTINCT id,name FROM library_dir\
WHERE name LIKE %s AND type='directory' AND lib_type = %s\
ORDER BY name"
cursor.execute(query,(dir+u"%%", type))
@query_decorator("fetchall")
def get_all_dirlinks(self, cursor, dirlink, type = 'audio'):
query = "SELECT DISTINCT id,name FROM library_dir\
WHERE name LIKE %s AND type='dirlink' AND lib_type = %s\
ORDER BY name"
cursor.execute(query,(dirlink+u"%%", type))
def _medialist_answer(self, answer, infos = []):
files = []
for m in answer:
current = MediaFile(self, m[0])
for index, attr in enumerate(infos):
current[attr] = m[index+1]
files.append(current)
return files
def _build_media_query(self, infos_list):
selectquery = "i.id"
joinquery = ""
for index, key in enumerate(infos_list):
selectquery += ",i%d.value" % index
joinquery += " JOIN media_info i%d ON i%d.id=i.id AND\
i%d.ikey='%s'" % (index, index, index, key)
return selectquery, joinquery
@query_decorator("medialist")
def get_dir_content(self, cursor, dir, infos = [], type = "audio"):
selectquery, joinquery = self._build_media_query(infos)
query = "SELECT DISTINCT "+ selectquery +\
" FROM library l JOIN library_dir d ON d.id=l.directory\
JOIN media_info i ON i.id=l.id"\
+ joinquery+\
" WHERE d.name = %s AND d.lib_type = %s ORDER BY d.name,l.name"
cursor.execute(query,(dir, type))
@query_decorator("medialist")
def get_file(self, cursor, dir, file, infos = [], type = "audio"):
selectquery, joinquery = self._build_media_query(infos)
query = "SELECT DISTINCT "+ selectquery +\
" FROM library l JOIN library_dir d ON d.id=l.directory\
JOIN media_info i ON i.id=l.id"\
+ joinquery+\
" WHERE d.name = %s AND l.name = %s AND d.lib_type = %s"
cursor.execute(query, (dir, file, type))
@query_decorator("medialist")
def get_file_withids(self, cursor, file_ids, infos=[], type="audio"):
selectquery, joinquery = self._build_media_query(infos)
query = "SELECT DISTINCT "+ selectquery +\
" FROM library l JOIN library_dir d ON d.id=l.directory\
JOIN media_info i ON i.id=l.id"\
+ joinquery+\
" WHERE l.id IN (%s) AND d.lib_type = '%s'" % \
(",".join(map(str,file_ids)), type)
cursor.execute(query)
@query_decorator("medialist")
def get_alldir_files(self, cursor, dir, infos = [], type = "audio"):
selectquery, joinquery = self._build_media_query(infos)
query = "SELECT DISTINCT "+ selectquery +\
" FROM library l JOIN library_dir d ON d.id=l.directory\
JOIN media_info i ON i.id=l.id"\
+ joinquery+\
" WHERE d.name LIKE %s AND d.lib_type = %s ORDER BY d.name,l.name"
cursor.execute(query,(dir+u"%%", type))
@query_decorator("fetchall")
def get_dircontent_id(self, cursor, dir, type):
query = "SELECT l.id\
FROM library l JOIN library_dir d ON l.directory = d.id\
WHERE d.lib_type = %s AND d.name = %s"
cursor.execute(query,(type, dir))
@query_decorator("fetchall")
def search_id(self, cursor, key, value):
query = "SELECT DISTINCT id FROM media_info WHERE ikey=%s AND value=%s"
cursor.execute(query,(key, value))
@query_decorator("medialist")
def search(self, cursor, filter, infos = [], orders = [], limit = None):
filter = self.sqlizer.translate(filter)
query = MediaSelectQuery()
query.select_id()
for tag in infos:
query.select_tag(tag)
filter.restrict(query)
for (tag, direction) in orders:
query.order_by_tag(tag, direction == "descending")
query.set_limit(limit)
cursor.execute(query.to_sql(), query.get_args())
@query_decorator("fetchall")
def list_tags(self, cursor, tag, filter):
filter = self.sqlizer.translate(filter)
query = MediaSelectQuery()
query.select_tag(tag)
filter.restrict(query)
query.order_by_tag(tag)
cursor.execute(query.to_sql(), query.get_args())
@query_decorator("fetchall")
def get_media_keys(self, cursor, type):
query = "SELECT DISTINCT m.ikey FROM media_info m\
JOIN media_info m2 ON m.id = m2.id\
WHERE m2.ikey='type' AND m2.value=%s"
cursor.execute(query, (type,))
#
# Post update action
#
@query_decorator("none")
def set_variousartist_tag(self, cursor, fid, file_info):
query = "SELECT DISTINCT m.id,m.value,m3.value FROM media_info m\
JOIN media_info m2 ON m.id = m2.id\
JOIN media_info m3 ON m.id = m3.id\
WHERE m.ikey='various_artist' AND m2.ikey='album'\
AND m2.value=%s AND m3.ikey='artist'"
cursor.execute(query, (file_info["album"],))
try: (id, various_artist, artist) = cursor.fetchone()
except TypeError: # first song of this album
return
else:
need_update = False
if various_artist == "__various__":
need_update, ids = True, [(fid,)]
elif artist != file_info["artist"]:
need_update = True
cursor.execute("SELECT id FROM media_info\
WHERE ikey='album' AND value=%s", (file_info["album"],))
ids = cursor.fetchall()
if need_update:
cursor.executemany("UPDATE media_info SET value = '__various__'\
WHERE ikey='various_artist' AND id = %s", ids)
@query_decorator("none")
def erase_empty_dir(self, cursor, type = "audio"):
cursor.execute("SELECT DISTINCT name FROM library_dir\
WHERE lib_type=%s", (type,))
for (dirname,) in cursor.fetchall():
rs = self.get_all_files(dirname, type)
if len(rs) == 0: # remove directory
cursor.execute("DELETE FROM library_dir WHERE name = %s",\
(dirname,))
@query_decorator("none")
def update_stats(self, cursor, type = "audio"):
# record mediadb stats
query = "UPDATE stats SET value = \
(SELECT COUNT(DISTINCT m.value) FROM media_info m JOIN media_info m2\
ON m.id = m2.id WHERE m.ikey=%s AND m2.ikey='type' AND m2.value=%s)\
WHERE name = %s"
if type == "audio":
values = [("uri", "song", "songs"),
("artist", "song", "artists"),
("genre", "song", "genres"),
("album", "song", "albums")]
elif type == "video":
values = [("uri", "video", "videos")]
cursor.executemany(query, values)
# update last updated stats
cursor.execute("UPDATE stats SET value = %s WHERE name = %s",\
(time.time(),type+"_library_update"))
#
# cover requests
#
@query_decorator("fetchone")
def get_file_cover(self, cursor, file_id, source = False):
var = source and "source" or "image"
query = "SELECT c.id, c.mime_type, c." + var +\
" FROM media_info m JOIN cover c\
ON m.ikey = 'cover' AND m.value = c.id\
WHERE m.id = %s"
cursor.execute(query, (file_id,))
@query_decorator("fetchone")
def is_cover_exist(self, cursor, source):
query = "SELECT id,lmod FROM cover WHERE source=%s"
cursor.execute(query, (source,))
@query_decorator("lastid")
def add_cover(self, cursor, source, mime, image):
query = "INSERT INTO cover (source,mime_type,lmod,image)\
VALUES(%s,%s,%s,%s)"
cursor.execute(query, (source, mime, time.time(), image))
@query_decorator("none")
def update_cover(self, cursor, id, mime, new_image):
query = "UPDATE cover SET mime_type = %s lmod = %s, image = %s\
WHERE id=%s"
cursor.execute(query, (mime, time.time(), new_image, id))
@query_decorator("none")
def remove_cover(self, cursor, id):
query = "DELETE FROM cover WHERE id=%s"
cursor.execute(query, (id,))
@query_decorator("none")
def remove_unused_cover(self, cursor):
query = "DELETE FROM cover WHERE id NOT IN \
(SELECT DISTINCT value FROM media_info WHERE ikey = 'cover')"
cursor.execute(query)
#
# common medialist requests
#
@query_decorator("fetchall")
def get_medialist_list(self, cursor):
query = SimpleSelect('medialist')
query.select_column('id', 'name', 'type')
query.order_by('name')
cursor.execute(query.to_sql(), query.get_args())
@query_decorator("custom")
def get_medialist_id(self, cursor, pl_name, pl_type = 'static'):
query = SimpleSelect('medialist')
query.select_column('id')
query.append_where("name = %s", (pl_name, ))
query.append_where("type = %s", (pl_type, ))
cursor.execute(query.to_sql(), query.get_args())
ans = cursor.fetchone()
if ans is None: raise ValueError
return ans[0]
@query_decorator("fetchone")
def is_medialist_exists(self, cursor, pl_id):
query = SimpleSelect('medialist')
query.select_column('id', 'name', 'type')
query.append_where("id = %s", (pl_id, ))
cursor.execute(query.to_sql(), query.get_args())
@query_decorator("none")
def delete_medialist(self, cursor, ml_id):
try: ml_id, name, type = self.is_medialist_exists(ml_id)
except TypeError:
return
if type == "static":
query = "DELETE FROM medialist_libraryitem WHERE medialist_id = %s"
cursor.execute(query, (ml_id,))
elif type == "magic":
for (filter_id,) in self.__get_medialist_filterids(cursor, ml_id):
self.delete_filter(cursor, filter_id)
cursor.execute(\
"DELETE FROM medialist_filters WHERE medialist_id=%s", (ml_id,))
# delete medialist properties
cursor.execute(\
"DELETE FROM medialist_property WHERE medialist_id=%s", (ml_id,))
# delete medialist sort
cursor.execute(\
"DELETE FROM medialist_sorts WHERE medialist_id=%s", (ml_id,))
cursor.execute("DELETE FROM medialist WHERE id = %s", (ml_id,))
self.connection.commit()
def get_filter(self, cursor, id):
try: filter_type = self.__get_filter_type(cursor, id)
except ValueError:
return None
if filter_type == 'basic':
return self.__get_basic_filter(cursor, id)
elif filter_type == 'complex':
return self.__get_complex_filter(cursor, id)
def delete_filter(self, cursor, filter_id):
try: filter_type = self.__get_filter_type(cursor, filter_id)
except ValueError:
return None
if filter_type == 'basic':
cursor.execute("DELETE FROM filters_basicfilters\
WHERE filter_id = %s", (filter_id,))
elif filter_type == 'complex':
# get filters id associated with this filter
query = SimpleSelect('filters_complexfilters_subfilters')
query.select_column('filter_id')
query.append_where("complexfilter_id = %s", (filter_id, ))
cursor.execute(query.to_sql(), query.get_args())
for (id,) in cursor.fetchall():
self.delete_filter(cursor, id)
cursor.execute("DELETE FROM filters_complexfilters_subfilters \
WHERE complexfilter_id = %s AND filter_id = %s",\
(filter_id, id))
cursor.execute("DELETE FROM filters_complexfilters \
WHERE filter_id = %s",(filter_id,))
cursor.execute("DELETE FROM filters WHERE filter_id = %s",(filter_id,))
def __get_filter_type(self, cursor, filter_id):
query = SimpleSelect('filters')
query.select_column('type')
query.append_where("filter_id = %s", (filter_id, ))
cursor.execute(query.to_sql(), query.get_args())
record = cursor.fetchone()
if not record: raise ValueError
return record[0]
def __get_basic_filter(self, cursor, id):
query = SimpleSelect('filters_basicfilters')
query.select_column('tag', 'operator', 'pattern')
query.append_where("filter_id = %s", (id, ))
cursor.execute(query.to_sql(), query.get_args())
record = cursor.fetchone()
if record:
bfilter_class = NAME2BASIC[record[1]]
f = bfilter_class(record[0], record[2])
return f
def __get_complex_filter(self, cursor, id):
query = SimpleSelect('filters_complexfilters')
query.select_column('combinator')
query.append_where("filter_id = %s", (id, ))
cursor.execute(query.to_sql(), query.get_args())
record = cursor.fetchone()
if record:
cfilter_class = NAME2COMPLEX[record[0]]
query = SimpleSelect('filters_complexfilters_subfilters')
query.select_column('filter_id')
query.append_where("complexfilter_id = %s", (id, ))
cursor.execute(query.to_sql(), query.get_args())
sf_records = cursor.fetchall()
filterlist = []
for sf_record in sf_records:
sf_id = sf_record[0]
filterlist.append(self.get_filter(cursor, sf_id))
cfilter = cfilter_class(*filterlist)
return cfilter
def __get_medialist_filterids(self, cursor, ml_id):
query = SimpleSelect('medialist_filters')
query.select_column('filter_id')
query.append_where("medialist_id = %s", (ml_id, ))
cursor.execute(query.to_sql(), query.get_args())
return cursor.fetchall()
def __add_medialist_filters(self, cursor, pl_id, filters):
filter_ids = []
for filter in filters:
filter_id = self.sqlizer.translate(filter).save(self)
if filter_id: filter_ids.append((pl_id, filter_id))
cursor.executemany("INSERT INTO medialist_filters\
(medialist_id,filter_id)VALUES(%s,%s)", filter_ids)
@query_decorator("custom")
def get_magic_medialist_filters(self, cursor, ml_id):
rs = self.__get_medialist_filterids(cursor, ml_id)
if not rs: return []
filters = []
for (filter_id,) in rs:
filter = self.get_filter(cursor, filter_id)
if filter: filters.append(filter)
return filters
@query_decorator("custom")
def set_magic_medialist_filters(self, cursor, pl_name, filters):
slt_query = "SELECT id FROM medialist WHERE name=%s AND type = 'magic'"
cursor.execute(slt_query, (pl_name,))
rs = cursor.fetchone()
if not rs:
query = "INSERT INTO medialist (name,type)VALUES(%s,'magic')"
cursor.execute(query, (pl_name,))
id = self.connection.get_last_insert_id(cursor)
else: (id,) = rs
for (filter_id,) in self.__get_medialist_filterids(cursor, id):
self.delete_filter(cursor, filter_id)
cursor.execute(\
"DELETE FROM medialist_filters WHERE medialist_id=%s", (id,))
self.__add_medialist_filters(cursor, id, filters)
self.connection.commit()
return id
@query_decorator("none")
def add_magic_medialist_filters(self, cursor, pl_id, filters):
self.__add_medialist_filters(cursor, pl_id, filters)
self.connection.commit()
@query_decorator("fetchall")
def get_magic_medialist_sorts(self, cursor, ml_id):
query = "SELECT tag,direction FROM medialist_sorts\
WHERE medialist_id = %s"
cursor.execute(query, (ml_id,))
@query_decorator("none")
def set_magic_medialist_sorts(self, cursor, ml_id, sorts):
# first, delete all previous sort for this medialist
cursor.execute("DELETE FROM medialist_sorts WHERE medialist_id=%s",\
(ml_id,))
cursor.executemany("INSERT INTO medialist_sorts\
(medialist_id,tag,direction)VALUES(%s,%s,%s)",\
[ (ml_id, tag, direction) for (tag, direction) in sorts])
self.connection.commit()
@query_decorator("fetchall")
def get_magic_medialist_properties(self, cursor, ml_id):
query = "SELECT ikey,value FROM medialist_property\
WHERE medialist_id = %s"
cursor.execute(query, (ml_id,))
@query_decorator("none")
def set_magic_medialist_property(self, cursor, ml_id, key, value):
cursor.execute("REPLACE INTO medialist_property\
(medialist_id,ikey,value)VALUES(%s,%s,%s)", (ml_id, key, value))
self.connection.commit()
######################################
###### Static medialist queries ######
######################################
@query_decorator("none")
def add_to_static_medialist(self, cursor, ml_id, media_ids):
query = "INSERT INTO medialist_libraryitem\
(medialist_id, libraryitem_id) VALUES(%s,%s)"
cursor.executemany(query, [(ml_id, mid) for mid in media_ids])
@query_decorator("medialist")
def get_static_medialist(self, cursor, ml_id, infos = []):
selectquery, joinquery = self._build_media_query(infos)
query = "SELECT DISTINCT "+ selectquery + ", mi.position " +\
" FROM medialist m JOIN medialist_libraryitem mi\
ON m.id = mi.medialist_id\
JOIN media_info i ON i.id=mi.libraryitem_id"\
+ joinquery+\
" WHERE m.id = %s AND m.type = 'static' ORDER BY mi.position"
cursor.execute(query,(ml_id,))
@query_decorator("custom")
def set_static_medialist(self, cursor, name, content):
slt_query = "SELECT id FROM medialist WHERE name=%s AND type = 'static'"
cursor.execute(slt_query, (name,))
rs = cursor.fetchone()
if not rs:
query = "INSERT INTO medialist (name,type)VALUES(%s,'static')"
cursor.execute(query, (name,))
id = self.connection.get_last_insert_id(cursor)
else: (id,) = rs
cursor.execute(\
"DELETE FROM medialist_libraryitem WHERE medialist_id = %s",(id,))
values = [(id, s["media_id"]) for s in content]
query = "INSERT INTO medialist_libraryitem(medialist_id,libraryitem_id)\
VALUES(%s,%s)"
cursor.executemany(query,values)
self.connection.commit()
# return id of the playlist
return id
#
# Webradio requests
#
@query_decorator("fetchall")
def get_webradios(self, cursor):
cursor.execute("SELECT wid, name, url FROM webradio ORDER BY wid")
@query_decorator("none")
def add_webradios(self, cursor, values):
query = "INSERT INTO webradio(wid,name,url)VALUES(%s,%s,%s)"
cursor.executemany(query,values)
self.connection.commit()
@query_decorator("none")
def clear_webradios(self, cursor):
cursor.execute("DELETE FROM webradio")
self.connection.commit()
#
# Stat requests
#
@query_decorator("fetchall")
def get_stats(self, cursor):
cursor.execute("SELECT * FROM stats")
#
# State requests
#
@query_decorator("none")
def set_state(self, cursor, values):
cursor.executemany("UPDATE variables SET value = %s WHERE name = %s" \
,values)
self.connection.commit()
@query_decorator("custom")
def get_state(self, cursor, type):
cursor.execute("SELECT value FROM variables WHERE name = %s",(type,))
(rs,) = cursor.fetchone()
return rs
def close(self):
self.connection.close()
# vim: ts=4 sw=4 expandtab
|