From: Richard Worth Date: Sun, 5 Dec 2010 11:04:02 +0000 (-0800) Subject: Get query string from server request. X-Git-Url: https://git.cworth.org/git?p=nodemuch;a=commitdiff_plain;h=260c11af146b497c59b9fa74dc7e29bd664de1eb Get query string from server request. Test url pathname for ending in /search, otherwirse return 404. --- diff --git a/example.js b/example.js index e6a084b..74e5701 100644 --- a/example.js +++ b/example.js @@ -1,12 +1,18 @@ var http = require( "http" ), - exec = require( "child_process" ).exec, - notmuch; + parse = require( "url" ).parse, + exec = require( "child_process" ).exec; http.createServer( function(req, res) { - var q = "wiki"; - notmuch = exec( "notmuch search " + q, function( error, stdout, stderr ) { - res.writeHead( 200, { "Content-Type": "text/plain" } ); - res.end( stdout ); - }); -} ).listen( 8124, "127.0.0.1" ); + var url = parse( req.url ); + if ( url.pathname.split( "/" ).splice(-1)[0] === "search" ) { + exec( "notmuch search " + url.query, function( error, stdout, stderr ) { + res.writeHead( 200, { "Content-Type": "text/plain" } ); + res.end( stdout ); + }); + } else { + res.writeHead( 404 ); + res.end("404"); + } +}).listen( 8124, "127.0.0.1" ); + console.log( "Server running at http://127.0.0.1:8124/" );