You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.5 KiB
61 lines
1.5 KiB
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
'''Wrapper for the command line interface.'''
|
|
|
|
from os.path import dirname
|
|
import os
|
|
import sys
|
|
import subprocess
|
|
import time
|
|
|
|
|
|
# Root path
|
|
base_path = dirname(os.path.abspath(__file__))
|
|
|
|
# Insert local directories into path
|
|
sys.path.insert(0, os.path.join(base_path, 'libs'))
|
|
|
|
from couchpotato.core.logger import CPLog
|
|
log = CPLog(__name__)
|
|
|
|
# Get options via arg
|
|
from couchpotato.runner import getOptions
|
|
options = getOptions(base_path, sys.argv[1:])
|
|
|
|
def start():
|
|
try:
|
|
args = [sys.executable] + sys.argv
|
|
new_environ = os.environ.copy()
|
|
new_environ['cp_main'] = 'true'
|
|
|
|
if os.name == 'nt':
|
|
for key, value in new_environ.iteritems():
|
|
if isinstance(value, unicode):
|
|
new_environ[key] = value.encode('iso-8859-1')
|
|
|
|
subprocess.call(args, env = new_environ)
|
|
return os.path.isfile(os.path.join(base_path, 'restart'))
|
|
except KeyboardInterrupt, e:
|
|
pass
|
|
except Exception, e:
|
|
log.critical(e)
|
|
return 0
|
|
|
|
from couchpotato.runner import runCouchPotato
|
|
if __name__ == '__main__':
|
|
|
|
if os.environ.get('cp_main', 'false') == 'true':
|
|
try:
|
|
runCouchPotato(options, base_path, sys.argv[1:])
|
|
except Exception, e:
|
|
log.critical(e)
|
|
else:
|
|
while 1:
|
|
restart = start()
|
|
if not restart:
|
|
break
|
|
|
|
from couchpotato.core.event import fireEvent
|
|
fireEvent('app.crappy_shutdown', single = True)
|
|
time.sleep(1)
|
|
sys.exit()
|
|
|