Skip to content
This repository has been archived by the owner on Aug 19, 2021. It is now read-only.

Interactor: Screenshot server

bard edited this page Sep 13, 2010 · 3 revisions

defineInteractor('screenshot', {
    handleInput: function(repl, input) {
        // Given an HTTP _request_, return an array containing the verb,
        // the path, and protocol version, e.g. ['GET', '/foo/bar', 'HTTP/1.1']
        //
        // Careful, the implementation is as naive as it can get!

        function parseHTTPRequest(request) {
            return request
                .split(/[\r\n]+/)[0] // get first line
                .split(/\s+/); // split it
        }

        // Strip leading and trailing whitespace
        var input = input.replace(/^\s+|\s+$/g, '');

        var [verb, path, protocolVersion] = parseHTTPRequest(input);
        if(verb != 'GET')
            return;

        var browserWindow = Cc['@mozilla.org/appshell/window-mediator;1']
            .getService(Ci.nsIWindowMediator)
            .getMostRecentWindow('navigator:browser');
        var tabbrowser = browserWindow.getBrowser();

        var canvas = browserWindow.document.createElementNS('http://www.w3.org/1999/xhtml', 'canvas');
        var tab = tabbrowser.addTab();
        var browser = tabbrowser.getBrowserForTab(tab); // tab.linkedBrowser ?

        browser.addEventListener('load', function() {
            var win = browser.contentWindow;
            var width = win.document.width;
            var height = win.document.height;
            canvas.width = width;
            canvas.height = height;
            var ctx = canvas.getContext('2d');
            ctx.clearRect(0, 0, canvas.width, canvas.height);
            ctx.save();
            ctx.scale(1.0, 1.0);
            ctx.drawWindow(win, 0, 0, width, height, 'rgb(255,255,255)');
            ctx.restore();

            repl.onOutput('HTTP/1.1 200 OK\r\n' +
                          'Content-Type: image/png\r\n' +
                          '\r\n' +
                          atob(canvas
                               .toDataURL('image/png', '')
                               .split(',')[1]))

            tabbrowser.removeTab(tab);
            repl.quit();
        }, true);

        var url = decodeURIComponent(path.match(/\/screenshot\/(.*$)/)[1]); // "/screenshot/http://www.google.com" -> "http://www.google.com"
        browser.loadURI(url);
    },

    onStart: function(repl) {},

    onStop: function(repl) {},

    getPrompt: function(repl) {},
});