Subversion Repositories RepoView

Rev

Rev 3 | Rev 6 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

/* $Id: main.c 5 2024-08-20 22:43:56Z nishi $ */

#include <stdio.h>

#include "../config.h"

#include "rv_sanity.h"
#include "rv_query.h"
#include "rv_page.h"
#include "rv_util.h"
#include "rv_db.h"
#include "rv_auth.h"

#include <stdlib.h>
#include <time.h>

char* postdata;

int main() {
        srand(time(NULL));
        rv_check_sanity();
        rv_init_db();
        rv_parse_query(getenv("QUERY_STRING"));
        rv_save_query('Q');
        postdata = malloc(1);
        postdata[0] = 0;
        char cbuf[2];
        cbuf[1] = 0;
        while(1) {
                fread(cbuf, 1, 1, stdin);
                if(feof(stdin)) break;
                char* tmp = postdata;
                postdata = rv_strcat(tmp, cbuf);
                free(tmp);
        }
        rv_parse_query(postdata);
        rv_save_query('P');
        rv_init_auth();
        rv_process_page();
        printf("Content-Type: text/html\r\n");
        printf("\r\n");
        rv_print_page();
        rv_logged_in();
        rv_load_query('Q');
        rv_free_query();
        rv_load_query('P');
        rv_free_query();
        rv_close_db();
        rv_free_auth();
}