gpodder/src/gpodder/libipodsync.py

239 lines
8.3 KiB
Python
Raw Normal View History

#
# gPodder (a media aggregator / podcast client)
# Copyright (C) 2005-2006 Thomas Perl <thp at perli.net>
#
# 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.
#
#
# libipodsync.py -- sync localdb contents with ipod playlist
# thomas perl <thp@perli.net> 20060405
#
#
# variable tells if ipod functions are to be enabled
enable_ipod_functions = True
try:
import gpod
import eyeD3
except:
enable_ipod_functions = False
import os
import sys
import time
import libgpodder
import liblocaldb
import libpodcasts
import gobject
# do we provide iPod functions to the user?
def ipod_supported():
global enable_ipod_functions
return enable_ipod_functions
class gPodder_iPodSync(object):
itdb = None
ipod_mount = '' # mountpoint for ipod
playlist_name = 'gpodder' # name of playlist to sync to
pl_master = None
pl_gpodder = None
callback_progress = None
callback_status = None
callback_done = None
def __init__( self, ipod_mount = '/media/ipod/', callback_progress = None, callback_status = None, callback_done = None):
if not ipod_supported():
if libgpodder.isDebugging():
print '(ipodsync) iPod functions not supported. (libgpod + eyed3 needed)'
self.ipod_mount = ipod_mount
self.callback_progress = callback_progress
self.callback_status = callback_status
self.callback_done = callback_done
def open( self):
if not ipod_supported():
return False
if self.itdb == None:
self.itdb = gpod.itdb_parse( self.ipod_mount, None)
if not self.itdb:
return False
self.itdb.mountpoint = self.ipod_mount
self.pl_master = gpod.sw_get_playlists( self.itdb)[0]
#self.pl_gpodder = self.get_gpodder_playlist()
self.pl_gpodder = gpod.itdb_playlist_podcasts( self.itdb)
return True
def close( self, write_update = True):
if not ipod_supported():
return False
if write_update:
if self.callback_progress != None:
gobject.idle_add( self.callback_progress, 100, 100)
if self.callback_status != None:
gobject.idle_add( self.callback_status, '...', '...', _('Saving iPod database...'))
if self.itdb:
gpod.itdb_write( self.itdb, None)
self.itdb = None
if self.callback_done != None:
time.sleep(1)
gobject.idle_add( self.callback_done)
return True
def remove_from_ipod( self, track):
if not ipod_supported():
return False
if libgpodder.isDebugging():
print '(ipodsync) REMOVING FROM IPOD!! track: %s' % track.title
if self.callback_status != None:
gobject.idle_add( self.callback_status, track.title, track.artist)
fname = gpod.itdb_filename_on_ipod( track)
#gpod.itdb_playlist_remove_track( self.pl_master, track)
gpod.itdb_playlist_remove_track( self.pl_gpodder, track)
gpod.itdb_track_unlink( track)
try:
os.unlink( fname)
except:
# suppose we've already deleted it or so..
pass
def get_gpodder_playlist( self):
if not ipod_supported():
return False
for playlist in gpod.sw_get_playlists( self.itdb):
if playlist.name == 'gpodder':
if libgpodder.isDebugging():
print "(ipodsync) found old gpodder playlist"
return playlist
# if we arrive here: gpodder playlist not found!
if libgpodder.isDebugging():
print "creating new playlist"
new_playlist = gpod.itdb_playlist_new( 'gpodder', False)
gpod.itdb_playlist_add( self.itdb, new_playlist, -1)
return new_playlist
def episode_is_on_ipod( self, channel, episode):
if not ipod_supported():
return False
for track in gpod.sw_get_playlist_tracks( self.pl_gpodder):
if episode.title == track.title and channel.title == track.album:
if libgpodder.isDebugging():
print '(ipodsync) Already on iPod: %s (from %s)' % (episode.title, track.title)
return True
return False
def dump( self):
if not ipod_supported():
return False
for track in gpod.sw_get_playlist_tracks( self.pl_gpodder):
print gpod.itdb_filename_on_ipod( track)
def clean_playlist( self):
if not ipod_supported():
return False
for track in gpod.sw_get_playlist_tracks( self.pl_gpodder):
if libgpodder.isDebugging():
print '(ipodsync) trying to remove track %s' % track.title
self.remove_from_ipod( track)
def copy_channel_to_ipod( self, channel):
if not ipod_supported():
return False
if not channel.sync_to_devices:
# we don't want to sync this..
return False
max = len( channel)
i = 1
for episode in channel:
if self.callback_progress != None:
gobject.idle_add( self.callback_progress, i, max)
if channel.isDownloaded( episode):
self.add_episode_from_channel( channel, episode)
i=i+1
if self.callback_status != None:
gobject.idle_add( self.callback_status, '...', '...', _('Complete: %s') % channel.title)
time.sleep(1)
def set_podcast_flags( self, track):
if not ipod_supported():
return False
# try to modify track to be more podcast-ish
#track.flag1 = 0x02
#track.flag2 = 0x01
#track.flag3 = 0x01
#track.flag4 = 0x01
pass
def add_episode_from_channel( self, channel, episode):
if not ipod_supported():
return False
if self.callback_status != None:
gobject.idle_add( self.callback_status, episode.title, channel.title)
if self.episode_is_on_ipod( channel, episode):
# episode is already here :)
return True
if libgpodder.isDebugging():
print '(ipodsync) Adding item: %s from %s' % (episode.title, channel.title)
local_filename = str(channel.getPodcastFilename( episode.url))
try:
eyed3_info = eyeD3.Mp3AudioFile( local_filename)
track_length = eyed3_info.getPlayTime() * 1000 # in milliseconds
except:
if libgpodder.isDebugging():
print '(ipodsync) Warning: cannot get length for %s, will use zero-length' % episode.title
track_length = 0 # hmm.. better do something else?!
track = gpod.itdb_track_new()
self.set_podcast_flags( track)
track.title = str(episode.title)
track.artist = 'gPodder podcast'
track.album = str(channel.title)
track.tracklen = track_length
track.filetype = 'mp3' # huh?! harcoded?! well, well :) FIXME, i'd say
track.description = str(episode.description)
track.podcasturl = str(episode.url)
track.podcastrss = str(channel.url)
gpod.itdb_track_add( self.itdb, track, -1)
#gpod.itdb_playlist_add_track( self.pl_master, track, -1)
gpod.itdb_playlist_add_track( self.pl_gpodder, track, -1)
if gpod.itdb_cp_track_to_ipod( track, local_filename, None) != 1:
if libgpodder.isDebugging():
print '(ipodsync) could not add track: %s' % episode.title
else:
if libgpodder.isDebugging():
print '(ipodsync) success for %s :)' % episode.title
try:
os.system('sync')
except:
# silently ignore :)
pass