4e0429fcc9
- Fixes #507
51 lines
1.8 KiB
Python
51 lines
1.8 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Create and delete playlists on the Plex side of things
|
|
"""
|
|
from __future__ import absolute_import, division, unicode_literals
|
|
from logging import getLogger
|
|
|
|
from .common import PlaylistError
|
|
from . import pms, db
|
|
###############################################################################
|
|
LOG = getLogger('PLEX.playlists.plex_pl')
|
|
|
|
###############################################################################
|
|
|
|
|
|
def create(playlist):
|
|
"""
|
|
Adds the playlist Playlist to the PMS. If playlist.id is
|
|
not None the existing Plex playlist will be overwritten; otherwise a new
|
|
playlist will be generated and stored accordingly in the playlist object.
|
|
Will also add (or modify an existing) Plex playlist table entry.
|
|
Make sure that playlist.kodi_hash is set!
|
|
Returns None or raises PlaylistError
|
|
"""
|
|
LOG.debug('Creating Plex playlist from Kodi file: %s', playlist)
|
|
plex_ids = db.playlist_file_to_plex_ids(playlist)
|
|
if not plex_ids:
|
|
LOG.warning('No Plex ids found for playlist %s', playlist)
|
|
raise PlaylistError
|
|
for pos, plex_id in enumerate(plex_ids):
|
|
try:
|
|
if pos == 0 or not playlist.plex_id:
|
|
pms.initialize(playlist, plex_id)
|
|
else:
|
|
pms.add_item(playlist, plex_id=plex_id)
|
|
except PlaylistError:
|
|
continue
|
|
db.update_playlist(playlist)
|
|
LOG.debug('Done creating Plex playlist %s', playlist)
|
|
|
|
|
|
def delete(playlist):
|
|
"""
|
|
Removes the playlist Playlist from the PMS. Will also delete the
|
|
entry in the Plex playlist table.
|
|
Returns None or raises PlaylistError
|
|
"""
|
|
LOG.debug('Deleting playlist from PMS: %s', playlist)
|
|
pms.delete(playlist)
|
|
db.update_playlist(playlist, delete=True)
|