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
|
# -*- coding: ISO-8859-1 -*-
__revision__ = '$Id: gconsole.py 281 2006-03-05 04:43:15Z iznogoud $'
# Copyright (c) 2005-2006 Vasco Nunes
# 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 Library 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
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
# You may use and distribute this software under the terms of the
# GNU General Public License, version 2 or later
from gettext import gettext as _
import getopt
import sys
import gutils
def check_args(self):
self.args = map(lambda i: i.replace('--', '').replace('-',''), sys.argv)
if self.args:
try:
opts, args = getopt.getopt(sys.argv[1:], "hDco:s:d:w:y:",
["help", "debug", "clean", "search_original=", "search_title=", "director=", "with=", "year="])
except getopt.GetoptError:
# print help information and exit:
con_usage()
sys.exit(2)
where = {}
for o, a in opts:
if o in ("-h", "--help"):
con_usage()
sys.exit()
if o in ("-D", "--debug"):
self.debug.set_debug()
if o in ("-c", "--clean"):
gutils.clean_posters_dir(self)
sys.exit()
if o in ("-o", "--search_original"):
where['original_title'] = a
if o in ("-s", "--search_title"):
where['title'] = a
if o in ("-d", "--director"):
where['director'] = a
if o in ("-w", "--with"):
where['actors'] = a
if o in ("-y", "--year"):
where['year'] = str(int(a))
if len(where)>0:
con_search_movie(self, where)
def con_search_movie(self, where):
query = ''
for i in where:
query += i + " LIKE '%" + where[i] + "%' AND "
query = query[:len(query)-5] # cut last " AND "
data = self.db.get_all_data(table_name="movies", order_by="number ASC", where=query,
what='number, title, original_title, year, director')
if data:
for row in data:
print "\033[31;1m[%s]\033[0m\t\033[38m%s\033[0m (%s), %s - \033[32m%s\033[0m"%(row['number'],row['title'], \
row['original_title'], row['year'], row['director'])
else:
print _("No movie found")
sys.exit()
def con_usage():
print "USAGE:", sys.argv[0], "[OPTIONS]"
print "\nOPTION:"
print "-h, --help\tprints this screen"
print "-D, --debug\trun with more debug info"
print "-c, --clean\tfind and delete orphan files in poster's directory"
print "\n printing movie list:"
print "-s <expr>, --search_title=<expr>"
print "-o <expr>, --original_title=<expr>"
print "-d <expr>, --director=<expr>"
print "-w <expr>, --with=<expr>"
print "-y <expr>, --year=<expr>"
|