[BACK]Return to cgi.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/cgi.c between version 1.65 and 1.66

version 1.65, 2014/07/12 16:14:35 version 1.66, 2014/07/12 17:21:45
Line 34 
Line 34 
 #include "manpath.h"  #include "manpath.h"
 #include "mansearch.h"  #include "mansearch.h"
   
 enum    page {  
         PAGE_INDEX,  
         PAGE_SEARCH,  
         PAGE_SHOW,  
         PAGE__MAX  
 };  
   
 /*  /*
  * A query as passed to the search function.   * A query as passed to the search function.
  */   */
Line 56  struct req {
Line 49  struct req {
         struct query      q;          struct query      q;
         char            **p; /* array of available manpaths */          char            **p; /* array of available manpaths */
         size_t            psz; /* number of available manpaths */          size_t            psz; /* number of available manpaths */
         enum page         page;  
 };  };
   
 static  void             catman(const struct req *, const char *);  static  void             catman(const struct req *, const char *);
Line 71  static void   http_print(const char *);
Line 63  static void   http_print(const char *);
 static  void             http_putchar(char);  static  void             http_putchar(char);
 static  void             http_printquery(const struct req *);  static  void             http_printquery(const struct req *);
 static  void             pathgen(struct req *);  static  void             pathgen(struct req *);
 static  void             pg_index(const struct req *, char *);  static  void             pg_search(const struct req *);
 static  void             pg_search(const struct req *, char *);  static  void             pg_show(const struct req *, const char *);
 static  void             pg_show(const struct req *, char *);  
 static  void             resp_begin_html(int, const char *);  static  void             resp_begin_html(int, const char *);
 static  void             resp_begin_http(int, const char *);  static  void             resp_begin_http(int, const char *);
 static  void             resp_end_html(void);  static  void             resp_end_html(void);
 static  void             resp_error_badrequest(const char *);  static  void             resp_error_badrequest(const char *);
 static  void             resp_error_internal(void);  static  void             resp_error_internal(void);
 static  void             resp_error_notfound(const char *);  
 static  void             resp_index(const struct req *);  static  void             resp_index(const struct req *);
 static  void             resp_noresult(const struct req *,  static  void             resp_noresult(const struct req *,
                                 const char *);                                  const char *);
Line 92  static const char  *mandir; /* contains all manpath di
Line 82  static const char  *mandir; /* contains all manpath di
 static  const char       *cssdir; /* css directory */  static  const char       *cssdir; /* css directory */
 static  const char       *httphost; /* hostname used in the URIs */  static  const char       *httphost; /* hostname used in the URIs */
   
 static  const char * const pages[PAGE__MAX] = {  
         "index", /* PAGE_INDEX */  
         "search", /* PAGE_SEARCH */  
         "show", /* PAGE_SHOW */  
 };  
   
 /*  /*
  * Print a character, escaping HTML along the way.   * Print a character, escaping HTML along the way.
  * This will pass non-ASCII straight to output: be warned!   * This will pass non-ASCII straight to output: be warned!
Line 352  resp_searchform(const struct req *req)
Line 336  resp_searchform(const struct req *req)
   
         puts("<!-- Begin search form. //-->");          puts("<!-- Begin search form. //-->");
         printf("<DIV ID=\"mancgi\">\n"          printf("<DIV ID=\"mancgi\">\n"
                "<FORM ACTION=\"%s/search\" METHOD=\"get\">\n"                 "<FORM ACTION=\"%s\" METHOD=\"get\">\n"
                "<FIELDSET>\n"                 "<FIELDSET>\n"
                "<LEGEND>Search Parameters</LEGEND>\n"                 "<LEGEND>Search Parameters</LEGEND>\n"
                "<INPUT TYPE=\"submit\" VALUE=\"Search\"> "                 "<INPUT TYPE=\"submit\" VALUE=\"Search\"> "
Line 414  resp_index(const struct req *req)
Line 398  resp_index(const struct req *req)
         resp_searchform(req);          resp_searchform(req);
         printf("<P>\n"          printf("<P>\n"
                "This web interface is documented in the "                 "This web interface is documented in the "
                "<A HREF=\"%s/search?expr=Nm~^man\\.cgi$&amp;sec=8\">"                 "<A HREF=\"%s?query=man.cgi&amp;sec=8\">"
                "man.cgi</A> manual, and the "                 "man.cgi</A> manual, and the "
                "<A HREF=\"%s/search?expr=Nm~^apropos$&amp;sec=1\">"                 "<A HREF=\"%s?query=apropos&amp;sec=1\">"
                "apropos</A> manual explains the query syntax.\n"                 "apropos</A> manual explains the query syntax.\n"
                "</P>\n",                 "</P>\n",
                scriptname, scriptname);                 scriptname, scriptname);
Line 449  resp_error_badrequest(const char *msg)
Line 433  resp_error_badrequest(const char *msg)
 }  }
   
 static void  static void
 resp_error_notfound(const char *page)  
 {  
   
         resp_begin_html(404, "Not Found");  
         puts("<H1>Page Not Found</H1>\n"  
              "<P>\n"  
              "The page you're looking for, ");  
         printf("<B>");  
         html_print(page);  
         printf("</B>,\n"  
                "could not be found.\n"  
                "Try searching from the\n"  
                "<A HREF=\"%s\">main page</A>.\n"  
                "</P>", scriptname);  
         resp_end_html();  
 }  
   
 static void  
 resp_error_internal(void)  resp_error_internal(void)
 {  {
         resp_begin_html(500, "Internal Server Error");          resp_begin_html(500, "Internal Server Error");
Line 485  resp_search(const struct req *req, struct manpage *r, 
Line 451  resp_search(const struct req *req, struct manpage *r, 
                  * without any delay.                   * without any delay.
                  */                   */
                 printf("Status: 303 See Other\r\n");                  printf("Status: 303 See Other\r\n");
                 printf("Location: http://%s%s/show/%s/%s?",                  printf("Location: http://%s%s/%s/%s?",
                     httphost, scriptname, req->q.manpath, r[0].file);                      httphost, scriptname, req->q.manpath, r[0].file);
                 http_printquery(req);                  http_printquery(req);
                 printf("\r\n"                  printf("\r\n"
Line 504  resp_search(const struct req *req, struct manpage *r, 
Line 470  resp_search(const struct req *req, struct manpage *r, 
         for (i = 0; i < sz; i++) {          for (i = 0; i < sz; i++) {
                 printf("<TR>\n"                  printf("<TR>\n"
                        "<TD CLASS=\"title\">\n"                         "<TD CLASS=\"title\">\n"
                        "<A HREF=\"%s/show/%s/%s?",                         "<A HREF=\"%s/%s/%s?",
                     scriptname, req->q.manpath, r[i].file);                      scriptname, req->q.manpath, r[i].file);
                 html_printquery(req);                  html_printquery(req);
                 printf("\">");                  printf("\">");
Line 522  resp_search(const struct req *req, struct manpage *r, 
Line 488  resp_search(const struct req *req, struct manpage *r, 
         resp_end_html();          resp_end_html();
 }  }
   
 /* ARGSUSED */  
 static void  static void
 pg_index(const struct req *req, char *path)  
 {  
   
         resp_index(req);  
 }  
   
 static void  
 catman(const struct req *req, const char *file)  catman(const struct req *req, const char *file)
 {  {
         FILE            *f;          FILE            *f;
Line 697  format(const struct req *req, const char *file)
Line 655  format(const struct req *req, const char *file)
         }          }
   
         snprintf(opts, sizeof(opts),          snprintf(opts, sizeof(opts),
             "fragment,man=%s/search?sec=%%S&expr=Nm~^%%N$",              "fragment,man=%s?query=%%N&amp;sec=%%S",
             scriptname);              scriptname);
   
         mparse_result(mp, &mdoc, &man, NULL);          mparse_result(mp, &mdoc, &man, NULL);
Line 727  format(const struct req *req, const char *file)
Line 685  format(const struct req *req, const char *file)
 }  }
   
 static void  static void
 pg_show(const struct req *req, char *path)  pg_show(const struct req *req, const char *path)
 {  {
         char            *sub;          char            *sub;
   
Line 757  pg_show(const struct req *req, char *path)
Line 715  pg_show(const struct req *req, char *path)
 }  }
   
 static void  static void
 pg_search(const struct req *req, char *path)  pg_search(const struct req *req)
 {  {
         struct mansearch          search;          struct mansearch          search;
         struct manpaths           paths;          struct manpaths           paths;
Line 836  pg_search(const struct req *req, char *path)
Line 794  pg_search(const struct req *req, char *path)
 int  int
 main(void)  main(void)
 {  {
         int              i;  
         struct req       req;          struct req       req;
         char            *querystring, *path, *subpath;          const char      *path;
           char            *querystring;
           int              i;
   
         /* Scan our run-time environment. */          /* Scan our run-time environment. */
   
Line 875  main(void)
Line 834  main(void)
         if (NULL != (querystring = getenv("QUERY_STRING")))          if (NULL != (querystring = getenv("QUERY_STRING")))
                 http_parse(&req, querystring);                  http_parse(&req, querystring);
   
         /*          /* Dispatch to the three different pages. */
          * Now juggle paths to extract information.  
          * We want to extract our filetype (the file suffix), the  
          * initial path component, then the trailing component(s).  
          * Start with leading subpath component.  
          */  
   
         subpath = path = NULL;          path = getenv("PATH_INFO");
         req.page = PAGE__MAX;          if (NULL == path)
                   path = "";
           else if ('/' == *path)
                   path++;
   
         if (NULL == (path = getenv("PATH_INFO")) || '\0' == *path)          if ('\0' != *path)
                 req.page = PAGE_INDEX;                  pg_show(&req, path);
           else if (NULL != req.q.expr)
         if (NULL != path && '/' == *path && '\0' == *++path)                  pg_search(&req);
                 req.page = PAGE_INDEX;          else
                   resp_index(&req);
         /* Resolve subpath component. */  
   
         if (NULL != path && NULL != (subpath = strchr(path, '/')))  
                 *subpath++ = '\0';  
   
         /* Map path into one we recognise. */  
   
         if (NULL != path && '\0' != *path)  
                 for (i = 0; i < (int)PAGE__MAX; i++)  
                         if (0 == strcmp(pages[i], path)) {  
                                 req.page = (enum page)i;  
                                 break;  
                         }  
   
         /* Route pages. */  
   
         switch (req.page) {  
         case (PAGE_INDEX):  
                 pg_index(&req, subpath);  
                 break;  
         case (PAGE_SEARCH):  
                 pg_search(&req, subpath);  
                 break;  
         case (PAGE_SHOW):  
                 pg_show(&req, subpath);  
                 break;  
         default:  
                 resp_error_notfound(path);  
                 break;  
         }  
   
         for (i = 0; i < (int)req.psz; i++)          for (i = 0; i < (int)req.psz; i++)
                 free(req.p[i]);                  free(req.p[i]);

Legend:
Removed from v.1.65  
changed lines
  Added in v.1.66

CVSweb