Search in sources :

Example 16 with AsyncHttpServer

use of com.koushikdutta.async.http.server.AsyncHttpServer in project cw-omnibus by commonsguy.

the class WebServerService method onCreate.

@Override
public void onCreate() {
    super.onCreate();
    server = new AsyncHttpServer();
    server.websocket("/ss", new WebSocketClientCallback());
    server.get("/.*", new AssetRequestCallback());
    server.listen(4999);
    raiseStartedEvent();
    foregroundify();
    timer.scheduleAtFixedRate(this, 3000, 3000, TimeUnit.MILLISECONDS);
}
Also used : AsyncHttpServer(com.koushikdutta.async.http.server.AsyncHttpServer)

Example 17 with AsyncHttpServer

use of com.koushikdutta.async.http.server.AsyncHttpServer in project cw-omnibus by commonsguy.

the class WebServerService method onCreate.

@Override
public void onCreate() {
    super.onCreate();
    ConnectivityManager mgr = (ConnectivityManager) getSystemService(CONNECTIVITY_SERVICE);
    NetworkInfo ni = mgr.getActiveNetworkInfo();
    if (ni == null || ni.getType() == ConnectivityManager.TYPE_MOBILE) {
        EventBus.getDefault().post(new ServerStartRejectedEvent());
        stopSelf();
    } else {
        handlebars = new Handlebars(new AssetTemplateLoader(getAssets()));
        rootPath = "/" + new BigInteger(20, rng).toString(24).toUpperCase();
        server = new AsyncHttpServer();
        if (configureRoutes(server)) {
            server.get("/.*", new AssetRequestCallback());
        }
        server.listen(getPort());
        raiseReadyEvent();
        foregroundify();
        timeoutFuture = timer.schedule(onTimeout, getMaxIdleTimeSeconds(), TimeUnit.SECONDS);
    }
}
Also used : NetworkInfo(android.net.NetworkInfo) ConnectivityManager(android.net.ConnectivityManager) Handlebars(com.github.jknack.handlebars.Handlebars) AsyncHttpServer(com.koushikdutta.async.http.server.AsyncHttpServer) BigInteger(java.math.BigInteger)

Example 18 with AsyncHttpServer

use of com.koushikdutta.async.http.server.AsyncHttpServer in project ion by koush.

the class Issues method testIssue146.

public void testIssue146() throws Exception {
    AsyncHttpServer httpServer = new AsyncHttpServer();
    httpServer.get("/", new HttpServerRequestCallback() {

        @Override
        public void onRequest(AsyncHttpServerRequest request, AsyncHttpServerResponse response) {
            response.getHeaders().set("Cache-Control", "max-age=300");
            response.send(request.getQuery().size() + "");
        }
    });
    AsyncServer asyncServer = new AsyncServer();
    try {
        int localPort = httpServer.listen(asyncServer, 0).getLocalPort();
        String s1 = Ion.with(getContext()).load("http://localhost:" + localPort).addQuery("query1", "q").asString().get();
        String s2 = Ion.with(getContext()).load("http://localhost:" + localPort).addQuery("query1", "q").addQuery("query2", "qq").asString().get();
        String s3 = Ion.with(getContext()).load("http://localhost:" + localPort).addQuery("query1", "q").asString().get();
        assertEquals(s1, "1");
        assertEquals(s2, "2");
        assertEquals(s3, "1");
    } finally {
        asyncServer.stop();
    }
}
Also used : HttpServerRequestCallback(com.koushikdutta.async.http.server.HttpServerRequestCallback) AsyncHttpServerRequest(com.koushikdutta.async.http.server.AsyncHttpServerRequest) AsyncServer(com.koushikdutta.async.AsyncServer) AsyncHttpServer(com.koushikdutta.async.http.server.AsyncHttpServer) AsyncHttpServerResponse(com.koushikdutta.async.http.server.AsyncHttpServerResponse)

Example 19 with AsyncHttpServer

use of com.koushikdutta.async.http.server.AsyncHttpServer in project ion by koush.

the class Issues method testIssue329.

public void testIssue329() throws Exception {
    AsyncHttpServer httpServer = new AsyncHttpServer();
    httpServer.post("/", new HttpServerRequestCallback() {

        @Override
        public void onRequest(AsyncHttpServerRequest request, AsyncHttpServerResponse response) {
            UrlEncodedFormBody body = (UrlEncodedFormBody) request.getBody();
            response.send(body.get().getString("電"));
        }
    });
    AsyncServer asyncServer = new AsyncServer();
    try {
        int localPort = httpServer.listen(asyncServer, 0).getLocalPort();
        String s1 = Ion.with(getContext()).load("http://localhost:" + localPort).setBodyParameter("電", "電").asString().get();
        assertEquals(s1, "電");
    } finally {
        asyncServer.stop();
    }
}
Also used : HttpServerRequestCallback(com.koushikdutta.async.http.server.HttpServerRequestCallback) AsyncHttpServerRequest(com.koushikdutta.async.http.server.AsyncHttpServerRequest) AsyncServer(com.koushikdutta.async.AsyncServer) AsyncHttpServer(com.koushikdutta.async.http.server.AsyncHttpServer) AsyncHttpServerResponse(com.koushikdutta.async.http.server.AsyncHttpServerResponse) UrlEncodedFormBody(com.koushikdutta.async.http.body.UrlEncodedFormBody)

Example 20 with AsyncHttpServer

use of com.koushikdutta.async.http.server.AsyncHttpServer in project ion by koush.

the class RedirectTests method testFinalLocation.

public void testFinalLocation() throws Exception {
    try {
        AsyncHttpServer server = new AsyncHttpServer();
        server.listen(Ion.getDefault(getContext()).getServer(), 5555);
        server.get("/", new HttpServerRequestCallback() {

            @Override
            public void onRequest(AsyncHttpServerRequest request, AsyncHttpServerResponse response) {
                response.redirect("/foo");
            }
        });
        server.get("/foo", new HttpServerRequestCallback() {

            @Override
            public void onRequest(AsyncHttpServerRequest request, AsyncHttpServerResponse response) {
                response.send("bar");
            }
        });
        Response<String> response = Ion.with(getContext()).load("http://localhost:5555").asString().withResponse().get();
        assertEquals(response.getResult(), "bar");
        assertEquals(response.getRequest().getUri().toString(), "http://localhost:5555/foo");
    } finally {
        Ion.getDefault(getContext()).getServer().stop();
    }
}
Also used : HttpServerRequestCallback(com.koushikdutta.async.http.server.HttpServerRequestCallback) AsyncHttpServerRequest(com.koushikdutta.async.http.server.AsyncHttpServerRequest) AsyncHttpServer(com.koushikdutta.async.http.server.AsyncHttpServer) AsyncHttpServerResponse(com.koushikdutta.async.http.server.AsyncHttpServerResponse)

Aggregations

AsyncHttpServer (com.koushikdutta.async.http.server.AsyncHttpServer)29 AsyncHttpServerRequest (com.koushikdutta.async.http.server.AsyncHttpServerRequest)22 AsyncHttpServerResponse (com.koushikdutta.async.http.server.AsyncHttpServerResponse)20 HttpServerRequestCallback (com.koushikdutta.async.http.server.HttpServerRequestCallback)20 CompletedCallback (com.koushikdutta.async.callback.CompletedCallback)7 MultipartFormDataBody (com.koushikdutta.async.http.body.MultipartFormDataBody)4 AsyncHttpGet (com.koushikdutta.async.http.AsyncHttpGet)3 Part (com.koushikdutta.async.http.body.Part)3 Semaphore (java.util.concurrent.Semaphore)3 ConnectivityManager (android.net.ConnectivityManager)2 NetworkInfo (android.net.NetworkInfo)2 Handlebars (com.github.jknack.handlebars.Handlebars)2 JsonObject (com.google.gson.JsonObject)2 AsyncServer (com.koushikdutta.async.AsyncServer)2 ByteBufferList (com.koushikdutta.async.ByteBufferList)2 AsyncHttpClient (com.koushikdutta.async.http.AsyncHttpClient)2 WebSocket (com.koushikdutta.async.http.WebSocket)2 UrlEncodedFormBody (com.koushikdutta.async.http.body.UrlEncodedFormBody)2 HeadersResponse (com.koushikdutta.ion.HeadersResponse)2 File (java.io.File)2