blob: 07a85c48f6f8a7a9bb5e14b8acafe04a3f28fe1c [file] [log] [blame]
/**
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/**
*
* This is a really hackey way to intercept all the HTTPS calls and send them via
* as3httpdclient instead of the browser-captured URLLoader. Don't follow this
* example -- refactor your application to avoid having to do this.
*
*/
package org.apache.flex.packageflexsdk.util
{
import com.adobe.net.URI;
import flash.events.ErrorEvent;
import flash.events.Event;
import flash.events.HTTPStatusEvent;
import flash.events.IOErrorEvent;
import flash.events.SecurityErrorEvent;
import flash.net.URLLoader;
import flash.net.URLRequest;
import flash.utils.ByteArray;
import org.httpclient.HttpClient;
import org.httpclient.events.HttpDataListener;
import org.httpclient.events.HttpRequestEvent;
import org.httpclient.events.HttpResponseEvent;
import org.httpclient.events.HttpStatusEvent;
public class ApacheURLLoader extends URLLoader
{
private var httpsData:ByteArray = new ByteArray();
public function ApacheURLLoader(request:URLRequest = null)
{
super(request);
}
override public function load(request:URLRequest):void
{
if (request.url.indexOf("https://") != 0)
{
super.load(request);
}
else
{
var httpsClient:HttpClient = new HttpClient();
var httpsClientListener:HttpDataListener = new HttpDataListener();
httpsClientListener.onConnect = function(event:HttpRequestEvent):void
{
var e:Event = new Event(Event.OPEN);
dispatchEvent(e);
};
httpsClientListener.onComplete = function(event:HttpResponseEvent):void
{
var e:HTTPStatusEvent = new HTTPStatusEvent(HTTPStatusEvent.HTTP_RESPONSE_STATUS);
// we are unable to emulate the full event since the built-in event handlers for status and
// many others are marked as private on the set functions.
dispatchEvent(e);
};
httpsClientListener.onDataComplete = function(event:HttpResponseEvent, incomingData:ByteArray):void
{
data = new ByteArray();
data.writeBytes(incomingData);
data.position=0;
var e:Event = new Event(Event.COMPLETE);
dispatchEvent(e);
};
httpsClientListener.onStatus = function(event:HttpStatusEvent):void
{
var e:HTTPStatusEvent = new HTTPStatusEvent(HTTPStatusEvent.HTTP_STATUS);
// we are unable to emulate the full event since the built-in event handlers for status and
// many others are marked as private on the set functions.
dispatchEvent(e);
};
httpsClientListener.onError = function(event:ErrorEvent):void
{
var e:IOErrorEvent = new IOErrorEvent(IOErrorEvent.NETWORK_ERROR);
e.text = event.text;
dispatchEvent(e);
};
// ProgressEvent is not available in this manner.
// We can't emulate the HTTP Status Event. It is internal to the Flash Player and won't
// let us override the status item.
this.httpsData = new ByteArray();
httpsClient.get(new URI(request.url), httpsClientListener);
}
}
private function httpsSecurityError(event:SecurityErrorEvent):void
{
dispatchEvent(event.clone());
}
private function httpsIOError(event:IOErrorEvent):void
{
dispatchEvent(event.clone());
}
}
}