TranMedia.php
12.2 KB
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
<?php
define('EmpireCMSAdmin','1');
require('../../../../class/connect.php');
require("../../../../class/db_sql.php");
require("../../../../class/functions.php");
$link=db_connect();
$empire=new mysqlquery();
$editor=3;
//驗證用戶
$lur=is_login();
$logininid=$lur['userid'];
$loginin=$lur['username'];
$loginrnd=$lur['rnd'];
$loginlevel=$lur['groupid'];
$loginadminstyleid=$lur['adminstyleid'];
//ehash
$ecms_hashur=hReturnEcmsHashStrAll();
$showmod=(int)$_GET['showmod'];
$type=(int)$_GET['type'];
$classid=(int)$_GET['classid'];
$filepass=(int)$_GET['filepass'];
$infoid=(int)$_GET['infoid'];
$modtype=(int)$_GET['modtype'];
$sinfo=(int)$_GET['sinfo'];
$InstanceName=ehtmlspecialchars($_GET['InstanceName']);
$editor=3;
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>上傳視頻</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta content="noindex, nofollow" name="robots">
<script src="../editor/dialog/common/fck_dialog_common.js" type="text/javascript"></script>
<script src="../editor/dialog/tranmedia/media.js" type="text/javascript"></script>
<script type="text/javascript">
document.write( FCKTools.GetStyleHtml( GetCommonDialogCss() ) ) ;
</script>
<script type="text/javascript">
function DoCheckTranFile(obj){
var ctypes,actypes,cfiletype,ctypest,sfile,sfocus;
ctypes="<?=$ecms_config['sets']['mediaplayertype']?>";
ctypest="<?=$ecms_config['sets']['realplayertype']?>";
actypes="<?=$public_r['filetype']?>";
if(obj.tranurl.value==''&&obj.file.value=='')
{
alert('請選擇要上傳的視頻');
obj.file.focus();
return false;
}
if(obj.file.value!='')
{
sfile=obj.file.value;
sfocus=0;
}
else
{
sfile=obj.tranurl.value;
sfocus=1;
}
cfiletype=','+ToGetFiletype(sfile)+',';
if(ctypes.indexOf(cfiletype)==-1&&ctypest.indexOf(cfiletype)==-1&&cfiletype!=',.flv,')
{
alert('文件擴展名錯誤');
if(sfocus==1)
{
obj.tranurl.focus();
}
else
{
obj.file.focus();
}
return false;
}
cfiletype='|'+ToGetFiletype(sfile)+'|';
if(actypes.indexOf(cfiletype)==-1)
{
alert('文件擴展名不在允許的範圍內');
if(sfocus==1)
{
obj.tranurl.focus();
}
else
{
obj.file.focus();
}
return false;
}
ReturnFileNo(obj);
// Show animation
window.parent.Throbber.Show( 100 ) ;
GetE( 'divUpload' ).style.display = 'none' ;
return true;
}
function ToGetFiletype(sfile){
var filetype,s;
s=sfile.lastIndexOf(".");
filetype=sfile.substring(s+1).toLowerCase();
return '.'+filetype;
}
//返回編號
function ExpStr(str,exp){
var pos,len,ext;
pos=str.lastIndexOf(exp)+1;
len=str.length;
ext=str.substring(pos,len);
return ext;
}
function GetFname(str){
var filename,exp;
if(str.indexOf("\\")>=0)
{
exp="\\";
}
else
{
exp="/";
}
filename=ExpStr(str,exp);
return filename;
}
function ReturnFileNo(obj){
var filename,str,exp;
if(obj.no.value!='')
{
return '';
}
if(obj.file.value!='')
{
str=obj.file.value;
}
else
{
str=obj.tranurl.value;
}
filename=GetFname(str);
obj.no.value=filename;
}
//返回播放器代碼
function echoViewFileCode(toplay,width,height,autostart,furl){
var fname=document.TranFlashFormT.no.value;
if(toplay==1)//media
{
imgstr="<object align=middle classid=\"CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95\" class=\"OBJECT\" id=\"MediaPlayer\" width=\""+width+"\" height=\""+height+"\"><PARAM NAME=\"AUTOSTART\" VALUE=\""+autostart+"\"><param name=\"ShowStatusBar\" value=\"-1\"><param name=\"Filename\" value=\""+furl+"\"><embed type=\"application/x-oleobject codebase=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\" flename=\"mp\" src=\""+furl+"\" width=\""+width+"\" height=\""+height+"\"></embed></object>";
}
else if(toplay==3)//flv
{
imgstr="<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\""+width+"\" height=\""+height+"\"><param name=\"movie\" value=\"<?=$public_r[newsurl]?>e/data/images/flvplayer.swf?vcastr_file="+furl+"&vcastr_title="+fname+"&BarColor=0xFF6600&BarPosition=1&IsAutoPlay="+autostart+"\"><param name=\"quality\" value=\"high\"><param name=\"allowFullScreen\" value=\"true\" /><embed src=\"<?=$public_r[newsurl]?>e/data/images/flvplayer.swf?vcastr_file="+furl+"&vcastr_title="+fname+"&BarColor=0xFF6600&BarPosition=1&IsAutoPlay="+autostart+"\" allowFullScreen=\"true\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\""+width+"\" height=\""+height+"\"></embed></object>";
}
else//reaplayer
{
imgstr="<object classid=\"clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA\" HEIGHT=\""+height+"\" ID=\"Player\" WIDTH=\""+width+"\" VIEWASTEXT><param NAME=\"_ExtentX\" VALUE=\"12726\"><param NAME=\"_ExtentY\" VALUE=\"8520\"><param NAME=\"AUTOSTART\" VALUE=\""+autostart+"\"><param NAME=\"SHUFFLE\" VALUE=\"0\"><param NAME=\"PREFETCH\" VALUE=\"0\"><param NAME=\"NOLABELS\" VALUE=0><param NAME=CONTROLS VALUE=ImageWindow><param NAME=CONSOLE VALUE=_master><param NAME=LOOP VALUE=0><param NAME=NUMLOOP VALUE=0><param NAME=CENTER VALUE=0><param NAME=MAINTAINASPECT VALUE=\""+furl+"\"><param NAME=BACKGROUNDCOLOR VALUE=\"#000000\"></object><br><object CLASSID=\"clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA\" HEIGHT=32 ID=\"Player\" WIDTH=\""+width+"\" VIEWASTEXT><param NAME=_ExtentX VALUE=18256><param NAME=_ExtentY VALUE=794><param NAME=AUTOSTART VALUE=\""+autostart+"\"><param NAME=SHUFFLE VALUE=0><param NAME=PREFETCH VALUE=0><param NAME=NOLABELS VALUE=0><param NAME=CONTROLS VALUE=controlpanel><param NAME=CONSOLE VALUE=_master><param NAME=LOOP VALUE=0><param NAME=NUMLOOP VALUE=0><param NAME=CENTER VALUE=0><param NAME=MAINTAINASPECT VALUE=0><param NAME=BACKGROUNDCOLOR VALUE=\"#000000\"><param NAME=SRC VALUE=\""+furl+"\"></object>";
}
return imgstr;
}
//返回
function echoViewFile(obj,ecms){
var height=obj.height.value;
var width=obj.width.value;
var toplay=obj.toplay.value;
var playmod=obj.playmod.value;
var picsay=obj.picsay.value;
var imgstr="";
var autostart;
var mediatypes="<?=$ecms_config['sets']['mediaplayertype']?>";
var realtypes="<?=$ecms_config['sets']['realplayertype']?>";
var furl,filetype;
if(obj.inserturl.value=='')
{
return '';
}
if(height==""||height==0||width==""||width==0)
{
alert("請輸入高度與寬度");
return false;
}
furl=obj.inserturl.value;
autostart="true";
if(playmod==1)
{
autostart="false";
}
if(toplay==0)
{
filetype=ToGetFiletype(furl);
if(filetype=='.flv')
{
toplay=3;
}
else if(mediatypes.indexOf(','+filetype+',')==-1)
{
toplay=2;
}
else
{
toplay=1;
}
}
imgstr=echoViewFileCode(toplay,width,height,autostart,furl);
if(picsay!="")
{
imgstr+="<br><span style='line-height=18pt'>"+picsay+"</span>";
}
imgstr='<center>'+imgstr+'</center>';
if(ecms==0)
{
ePreview.innerHTML=imgstr;
return '';
}
oEditor.FCK.InsertHtml(imgstr);
window.parent.Cancel();
}
</script>
</head>
<body scroll="no" style="OVERFLOW: hidden">
<div id="divInfo">
<table cellSpacing="1" cellPadding="1" width="100%" border="0">
<form action="" method="post" name="etranflashform" onsubmit="return false;">
<input type="hidden" name="picsay" value="">
<tr>
<td> <table cellSpacing="0" cellPadding="0" width="100%" border="0">
<tr>
<td width="100%"><span fckLang="DlgImgURL">URL</span> </td>
<td id="tdBrowse" style="DISPLAY: none" noWrap rowSpan="2">
<input id="btnBrowse" onclick="window.open('<?="../../FileMain.php?filepass=$filepass&classid=$classid&infoid=$infoid&type=3&modtype=$modtype&sinfo=$sinfo&InstanceName=$InstanceName&tranfrom=1&field=opener.document.etranflashform.inserturl".$ecms_hashur['ehref'];?>','','width=700,height=550,scrollbars=yes');" type="button" value="Browse Server" fckLang="DlgBtnBrowseServer">
</td>
</tr>
<tr>
<td vAlign="top"><input id="txtUrl" name="inserturl" onblur="echoViewFile(document.etranflashform,0);" style="WIDTH: 100%" type="text">
</td>
</tr>
</table></td>
</tr>
<TR>
<TD> <table cellSpacing="1" cellPadding="3" border="0">
<TR>
<TD nowrap> <span fckLang="DlgImgWidth">Width</span><br> <input type="text" id="txtWidth" name="width" value="480" size="3" onblur="echoViewFile(document.etranflashform,0);">
</TD>
<TD> </TD>
<TD> <span fckLang="DlgImgHeight">Height</span><br> <input type="text" id="txtHeight" name="height" value="360" size="3" onblur="echoViewFile(document.etranflashform,0);">
</TD>
<TD> </TD>
<TD>播放器<br> <select name="toplay" id="toplay" onchange="echoViewFile(document.etranflashform,0);">
<option value="0">自動識別</option>
<option value="1">Media Player</option>
<option value="2">Real Player</option>
<option value="3">Flv Player</option>
</select> </TD>
<TD>播放模式<br>
<select name="playmod" id="playmod" onchange="echoViewFile(document.etranflashform,0);">
<option value="0">自動播放</option>
<option value="1">手動播放</option>
</select></TD>
</TR>
</table></TD>
</TR>
<tr>
<td vAlign="top"> <table cellSpacing="0" cellPadding="0" width="100%" border="0">
<tr>
<td valign="top" width="100%"> <table cellSpacing="0" cellPadding="0" width="100%">
<tr>
<td><span fckLang="DlgImgPreview">Preview</span></td>
</tr>
<tr>
<td id="ePreviewCell" valign="top" class="FlashPreviewArea"><iframe src="../editor/dialog/fck_flash/fck_flash_preview.html" frameborder="0" marginheight="0" marginwidth="0"></iframe></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</form>
</table>
</div>
<div id="divUpload" style="DISPLAY: none">
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" id="tranpictb">
<form id="frmUpload" name="TranFlashFormT" method="post" target="UploadWindow" enctype="multipart/form-data" action="../../ecmseditor.php" onsubmit="return DoCheckTranFile(TranFlashFormT);">
<?=$ecms_hashur['form']?>
<input type=hidden name=classid value="<?=$classid?>">
<input type=hidden name=filepass value="<?=$filepass?>">
<input type=hidden name=infoid value="<?=$infoid?>">
<input type=hidden name=modtype value="<?=$modtype?>">
<input type=hidden name=sinfo value="<?=$sinfo?>">
<input type=hidden name=enews value="TranFile">
<input type=hidden name=type value="3">
<input type=hidden name=doing value="0">
<input type=hidden name=tranfrom value="1">
<input type=hidden name=InstanceName value="<?=$InstanceName?>">
<tr>
<td>遠程保存<br> <input name="tranurl" type="text" id="tranurl" size="32" style="width: 100%"></td>
</tr>
<tr>
<td>本地上傳<br> <input type="file" name="file" id="file" style="width: 100%">
</td>
</tr>
<tr>
<td>文件別名<br> <input name="no" type="text" id="no" value="<?=ehtmlspecialchars($_GET['fileno'])?>" style="width: 100%">
</td>
</tr>
<tr>
<td height="30"> <input type="submit" name="Submit2" value="發送到服務器上">
</td>
</tr>
</form>
</table>
<script type="text/javascript">
document.write( '<iframe name="UploadWindow" style="DISPLAY: none" src="' + FCKTools.GetVoidUrl() + '"><\/iframe>' ) ;
</script>
</div>
</body>
</html>