如果實現(xiàn)swf文件不能在本地或者非法url中播放,就可以達到一定程度的保護效果。下面來講一下實現(xiàn)的大致思路,
代碼如下:
var this_url = _root._url; if (substring(this_url,1,4) == 'file'){ //如果在硬盤上播放,作出處理 trace('對不起,禁止在本地播放!'); }else{ //表示在網(wǎng)頁中播放,則檢查是否是合法的URL地址 urlArray = this_url.split("/"); //對url地址分割 if (urlArray[2]!='yourweb.com'){ getURL("javascript:alert('訪問被禁止!')"); }else { getURL("javascript:alert('歡迎光臨YourName!')"); } }
注意:該段代碼必須寫在開頭,具體的處理控制還需要細化才行。
因為客戶端的安全性不并是很好,所以建議在服務器端作保護控制,下面的方法采用了服務器端的實現(xiàn):
//訪問保護 application.onAppStart = function (info){ this.domainList = new Array("http://210.64.45.41";,"http://210.64.45.38";,"http://vid eo.idv.to";); this.domainLength = this.domainList.length; };
application.onConnect = function(client_obj) { //限制訪問 trace("user trying to connect from:" + client_obj.referrer); var theReferrer = client_obj.referrer.toLowerCase();
for(i=0; i<this.domainLength; i++) { var challenge = theReferrer.indexOf(this.domainList[ i ]); if (challenge == 0) { acceptit = 1; break; } } if (acceptit) { trace ("correct domain, accepting connection"); application.acceptConnection(client_obj) } else { trace ("Sorry wrong domain, rejecting connection"); application.rejectConnection(client_obj) } }
出處:閃客銀行
責任編輯:moby
◎進入論壇Flash專欄版塊參加討論
|