/cgi/canned_responses.c
/* Blerg is (C) 2011 The Dominion of Awesome, and is distributed under a
 * BSD-style license.  Please see the COPYING file for details.
 */
#include <stdio.h>
#include <string.h>
#include "canned_responses.h"
#include "app.h"

void respond_simple_data(const char *data, int len) {
	printf("Content-length: %d\r\n\r\n", len);
	fwrite(data, len, 1, stdout);
}

void respond_403() {
	printf("Status: 403 Forbidden\r\n");
	printf("Content-type: text/html\r\n");
	printf("Content-length: %d\r\n\r\n", strlen(CONTENT_403));

	printf(CONTENT_403);
}

void respond_404() {
	printf("Status: 404 Not Found\r\n");
	printf("Content-type: text/html\r\n");
	printf("Content-length: %d\r\n\r\n", strlen(CONTENT_404));

	printf(CONTENT_404);
}

void respond_405() {
	printf("Status: 405 Method Not Allowed\r\n");
	printf("Content-type: text/html\r\n");
	printf("Content-length: %d\r\n\r\n", strlen(CONTENT_405));

	printf(CONTENT_405);
}

void respond_JSON_Failure() {
	printf("Content-type: application/json\r\n");
	respond_simple_data(JSON_FAILURE, strlen(JSON_FAILURE));
}

void respond_JSON_Success() {
	printf("Content-type: application/json\r\n");
	respond_simple_data(JSON_SUCCESS, strlen(JSON_SUCCESS));
}