/usr/share/freevo/htdocs/youtube.rpy is in freevo 1.9.2b2-4.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # -*- coding: iso-8859-1 -*-
# vim:autoindent:tabstop=4:softtabstop=4:shiftwidth=4:expandtab:filetype=python:
# -----------------------------------------------------------------------
# Web interface to youtube
# -----------------------------------------------------------------------
# $Id: youtube.rpy 11905 2011-11-14 21:54:46Z adam $
#
# Notes:
# Todo:
#
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
# Copyright (C) 2002 Krister Lagerstrom, et al.
# Please see the file freevo/Docs/CREDITS for a complete list of authors.
#
# 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 MER-
# CHANTABILITY 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.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# -----------------------------------------------------------------------
#
# Edit Date - Oct 2, 2007 6:31am
import logging
logger = logging.getLogger("freevo.www.htdocs.youtube.")
import sys
import time
import os
import os.path
import config
import subprocess
import string
import math
from www.web_types import HTMLResource, FreevoResource
from urllib import urlopen
from getopt import getopt
from stat import *
def xmlStatus(fstatus):
'''
'''
_debug_('xmlStatus(fstatus)', 2)
xmlstatus = ''
xmlstatus += '<PERCENT>%s</PERCENT>' % fstatus['percent']
xmlstatus += '<DOWNLOADED>%s</DOWNLOADED>' % fstatus['downloaded']
xmlstatus += '<FILESIZE>%s</FILESIZE>' % fstatus['filesize']
xmlstatus += '<SPEED>%s</SPEED>' % fstatus['speed']
xmlstatus += '<ETA>%s</ETA>' % fstatus['eta']
return xmlstatus
# Get optimum 1k exponent to represent a number of bytes
def optimum_k_exp(num_bytes):
'''
'''
_debug_('optimum_k_exp(num_bytes)', 2)
const_1k = 1024
if num_bytes == 0:
return 0
return long(math.log(num_bytes, const_1k))
# Get optimum representation of number of bytes
def format_bytes(num_bytes):
'''
'''
_debug_('format_bytes(num_bytes)', 2)
const_1k = 1024
try:
exp = optimum_k_exp(num_bytes)
suffix = 'bkMGTPEZY'[exp]
if exp == 0:
return '%s%s' % (num_bytes, suffix)
converted = float(num_bytes) / float(const_1k**exp)
return '%.2f%s' % (converted, suffix)
except IndexError:
return "Error"
def getStatus(ytfile):
'''
'''
_debug_('getStatus(ytfile)', 2)
fileStatus = {'percent': '-', 'downloaded': 'done' , 'filesize': 'done' , 'speed' : '--', 'eta' : '--:--'}
youtube_file = os.path.join(config.YOUTUBE_DIR,ytfile)
youtube_log_dir = os.path.join(config.YOUTUBE_DIR,'./tmp')
youtube_logfile = os.path.join(youtube_log_dir,os.path.splitext(ytfile)[0] + '.log')
fileStatus['filesize'] = format_bytes(os.path.getsize(youtube_file))
logfile = config.YOUTUBE_DIR + '.tmp/' + os.path.splitext(ytfile)[0] + '.log'
if os.path.exists(youtube_logfile):
lfhandle = open(youtu_logfile, 'r')
llines = lfhandle.readlines()
try :
if len(llines) == 5:
status = llines[4].split('\r')[-1]
status = status.split()
fileStatus['percent'] = status[3]
fileStatus['downloaded'] = status[5]
fileStatus['filesize'] = status[7].strip(')')
fileStatus['speed'] = status[9]
fileStatus['eta'] = status[11]
else:
fileStatus['percent'] = 'NA'
fileStatus['downloaded'] = 'NA'
fileStatus['speed'] = 'NA'
fileStatus['eta'] = 'Unknown'
except Exception, e:
fileStatus['percent'] = 'NA'
fileStatus['downloaded'] = 'NA'
fileStatus['speed'] = 'NA'
fileStatus['eta'] = 'Unknown'
return fileStatus
def getXML():
'''
'''
_debug_('getXML()', 2)
filesXML = '<?xml version="1.0" encoding="ISO-8859-1" ?>'
filesXML += '<FILELIST>'
filelist = os.listdir(config.YOUTUBE_DIR)
filelist.sort()
for fl in filelist :
fstat = os.stat(config.YOUTUBE_DIR + fl)[ST_MODE]
isdir = S_ISDIR(fstat)
if not isdir and fl != 'folder.fxd' :
# check for log file.
filesXML += '<FILE id="' + fl + '">'
filesXML += '<FILENAME>' + fl + '</FILENAME>'
fstats = getStatus(fl)
filesXML += xmlStatus(fstats)
filesXML += '</FILE>'
filesXML += '</FILELIST>'
return filesXML
def displaytableheader():
'''
'''
_debug_('displaytableheader()', 2)
fvhtml = HTMLResource()
fvhtml.tableOpen('class="library" id="filelist"')
fvhtml.tableRowOpen('class="chanrow"')
fvhtml.tableCell('Current Downloads', 'class ="guidehead" colspan="2"')
fvhtml.tableCell('% Done', 'class ="guidehead" colspan="1"')
fvhtml.tableCell('', 'class ="guidehead" colspan="1"')
fvhtml.tableCell('Size', 'class ="guidehead" colspan="1"')
fvhtml.tableCell('Speed', 'class ="guidehead" colspan="1"')
fvhtml.tableCell('ETA', 'class ="guidehead" colspan="1"')
fvhtml.tableRowClose()
fvhtml.tableClose()
return fvhtml.res
def CleanupLogFiles():
'''
'''
_debug_('CleanupLogFiles()', 2)
logfiles = os.listdir(config.YOUTUBE_DIR + '.tmp/')
for lfile in logfiles:
# Check to see if the movie file exists.
vfile = config.YOUTUBE_DIR + os.path.splitext(lfile)[0] + '.flv'
if not os.path.exists(vfile):
os.remove(config.YOUTUBE_DIR + '.tmp/' + lfile)
def startdownload(dlcommand, logfile):
'''
'''
_debug_('startdownload(dlcommand=%r, logfile=%r)' % (dlcommand, logfile), 2)
pwdcur = os.getcwd()
os.chdir(config.YOUTUBE_DIR)
lfile = open (logfile, 'w')
ytpid = subprocess.Popen(dlcommand, universal_newlines=True, shell=True, stdout=lfile).pid
os.chdir(pwdcur)
def convert_file_to_flv(convert_file):
'''
'''
_debug_('convert_file_to_flv(convert_file)', 2)
source_file = config.YOUTUBE_DIR + convert_file
destin_file = source_file + ".flv"
# ffmpeg -i /var/videos/incoming/video.avi -s 320x240 -ar 44100 -r 12
# /var/videos/flv/video.flv
convert_cmd = ' -i "%s" -s 320x240 -ar 44100 -r 12 "%s" '
convert_cmd = convert_cmd % (source_file , destin_file)
convert_cmd = ('/usr/bin/ffmpeg', '-i', source_file, '-s', '320x240', '-ar', '44100', '-r', '12', destin_file)
_debug_(convert_cmd, 2)
pwdcur = os.getcwd()
os.chdir(config.YOUTUBE_DIR)
logfile = os.path.join(config.FREEVO_LOGDIR, 'YouTube.log')
lfile = open(logfile, 'w')
ytpid = subprocess.Popen(convert_cmd, universal_newlines=True, stdout=lfile).pid
os.chdir(pwdcur)
def download_youtube(yt_url):
'''
'''
_debug_('download_youtube(yt_url)', 2)
logfile = config.YOUTUBE_DIR + '.tmp/' + yt_url.split('=')[-1] + '.log'
startdownload([config.YOUTUBE_DL, '-t', yt_url], logfile)
def download_url(dl_url):
'''
'''
_debug_('download_url(dl_url)', 2)
# get the file name from the url.
logfile = config.YOUTUBE_DIR + '.tmp/partfile' + dl_url.split('/')[-1]
logfile = os.path.splitext(logfile)[0] + '.log'
startdownload((config.DOWNLOAD_DL, dl_url), logfile)
def addPageRefresh():
'''
'''
_debug_('addPageRefresh()', 2)
prhtml = '<script type="text/JavaScript" src="scripts/youtube.js">window.onload=beginrefresh</script>\n'
prhtml += '<span class="refresh" id="refresh">Refresh In : ??</span>'
return prhtml
def envCheck():
'''
'''
_debug_('envCheck()', 2)
yterrors = []
if (not config.__dict__.has_key('YOUTUBE_DIR')):
yterrors.append('Unable to Find YOUTUDE_DIR setting in local_conf.py')
yterrors.append('Add YOUTUBE_DIR = "Directory to Save Downloads."to your local_conf.py')
config.YOUTUBE_DIR = 'MISSING'
if (not config.__dict__.has_key('YOUTUBE_DL')):
yterrors.append('Unable to Find YOUTUDE_DL setting in local_conf.py')
yterrors.append('Add YOUTUBE_DL = "Path to youtube-dl script" to your local_conf.py')
config.YOUTUBE_DL = 'MISSING'
if (not config.__dict__.has_key('DOWNLOAD_DL')):
yterrors.append('Unable to Find DOWNLOAD_DL setting in local_conf.py')
yterrors.append('Add DOWNLOAD_DL = "Path to downloadurl.py script" to your local_conf.py')
config.DOWNLOAD_DL = 'MISSING'
return yterrors
def doFlowPlayer(pfile, flow_player='FlowPlayerThermo.swf'):
'''
'''
_debug_('doFlowPlayer(pfile, flow_player)', 2)
flash = '\n<script type="text/javascript" src="flowplayer/swfobject.js"></script>'
flash += '\n<div align="center" style= display:"" id="flowplayerholder">'
flash += '\n<a href="http://flowplayer.org/">flowplayer.org</a>'
flash += '\n</div>'
flash += '\n<script type="text/javascript">'
flash += '\n// <![CDATA['
flash += '\nvar fo = new SWFObject("flowplayer/%s", "FlowPlayer", "468", "350", "7", "#ffffff", true);' % flow_player
flash += '\n// need this next line for local testing, its optional if your swf is on the same domain as your html page'
flash += '\nfo.addParam("allowScriptAccess", "always");'
flash += '\nfo.addVariable("config", "{ showPlayListButtons: true, playList: [ {overlayId: \'play\' }, '
flash += ' { url: \'/youtube/'+ pfile + '\' } ], initialScale: \'fit\' }");'
flash += '\nfo.write("flowplayerholder");'
flash += '\n// ]]>'
flash += '\n</script>'
return flash
class YouTubeResource(FreevoResource):
def _render(self, request):
'''
'''
_debug_('_render(request)', 2)
fv = HTMLResource()
form = request.args
fv.printHeader(_('YouTube'), 'styles/main.css', selected=_('YouTube'))
fv.res += '\n<link rel="stylesheet" href="styles/youtube.css" type="text/css" />\n'
yterrors = envCheck()
cmd = fv.formValue(form, 'cmd')
if cmd == 'Delete':
filename = fv.formValue(form, 'delete_file')
if filename:
filename = config.YOUTUBE_DIR + filename
if os.path.exists(filename):
os.remove(filename)
convert_file = fv.formValue(form, 'convert_file')
if cmd == 'Convert' and convert_file:
convert_file_to_flv(convert_file)
playfile = fv.formValue(form, 'playfile')
flow_player = fv.formValue(form, 'flow_player')
if not flow_player:
flow_player = 'FlowPlayerLP.swf'
if cmd == "Play" and playfile:
flowplayer_html = doFlowPlayer(playfile, flow_player)
return str(flowplayer_html)
if playfile:
fv.res += doFlowPlayer(playfile, flow_player)
#fv.res += doFlowPlayer('', flow_player)
if config.YOUTUBE_DIR == 'MISSING' or ((config.YOUTUBE_DL == "MISSING") and (config.DOWNLOAD_DL == "MISSING")):
fv.printMessages(yterrors)
return str(fv.res)
if not os.path.exists(config.YOUTUBE_DIR):
fv.res += '<br><b>Unable to locate youtube download location "' + config.YOUTUBE_DIR + '" </b><br>'
fv.res += 'Add YOUTUBE_DIR = "download directory" to your local_conf.py'
return str(fv.res)
if not os.path.exists(config.YOUTUBE_DL):
fv.res += '<div class="youtube_error" Unable to locate youtube-dl script "%s"</b>' % config.YOUTUBE_DL
fv.res += 'Download scripts from <a href="http://www.arrakis.es/~rggi3/youtube-dl/">' + \
'http://www.arrakis.es/~rggi3/youtube-dl/</a>'
fv.res += '<br>Add YOUTUBE_DL = "path and file name to youtube_dl script" </div>'
if not os.path.exists(config.DOWNLOAD_DL):
fv.res += '<div class="youtube_error">Unable to locate downloadurl.py script "%s"</b>' % config.DOWNLOAD_DL
fv.res += '<br>Add DOWNLOAD_DL = "path and file name to downloadurl script"</div>'
if not os.path.isdir(config.YOUTUBE_DIR):
os.makedirs(config.YOUTUBE_DIR)
if not os.path.isdir(config.YOUTUBE_DIR + '.tmp'):
os.makedirs(config.YOUTUBE_DIR + '.tmp')
dltype = fv.formValue(form, 'dlscript')
dlurl = fv.formValue(form, 'dl_url')
if dltype and dlurl:
if dltype == 'youtube':
download_youtube(dlurl)
if dltype == 'downloadurl':
download_url(dlurl)
blxml = fv.formValue(form, "xml")
if blxml :
fv.res = getXML()
return str(fv.res)
dlurl = ''
fv.res += '\n<div id="flowplayer_div"></div>'
fv.res += '\n<br><form id="Url Download" action="youtube.rpy" method="get">'
fv.res += '\n <div class="youtube"><br><b>Download URL :</b>'
fv.res += '\n <input type="text" name="dl_url" id="dl_url" size="40" value="' + dlurl + '" />'
fv.res += '\n <select name="dlscript" value="downloadurl" id="download_type">'
fv.res += '\n <option value="youtube">Youtube</option>'
fv.res += '\n <option value="downloadurl">Donwload Url</option>'
fv.res += '\ </select>'
fv.res += '\n <input type="button" value=" Download! " onclick=StartDownload() />'
fv.res += addPageRefresh()
fv.res += '\n </div>'
fv.res += '\n</form><br>\n'
fv.res += displaytableheader()
return str(fv.res)
resource = YouTubeResource()
|