HTHome.c
上传用户:zlh9724
上传日期:2007-01-04
资源大小:1991k
文件大小:10k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. /*      HTHome.c
  2. ** ANCHOR TRANSLATIONS
  3. **
  4. ** (c) COPYRIGHT MIT 1995.
  5. ** Please first read the full copyright statement in the file COPYRIGH.
  6. **
  7. ** Authors
  8. ** TBL Tim Berners-Lee timbl@w3.org
  9. ** JFG Jean-Francois Groff jfg@dxcern.cern.ch
  10. ** DD Denis DeLaRoca (310) 825-4580  <CSP1DWD@mvs.oac.ucla.edu>
  11. ** HFN Henrik Frystyk
  12. ** History
  13. **       8 Jun 92 Telnet hopping prohibited as telnet is not secure TBL
  14. ** 26 Jun 92 When over DECnet, suppressed FTP, Gopher and News. JFG
  15. **  6 Oct 92 Moved HTClientHost and HTlogfile into here. TBL
  16. ** 17 Dec 92 Tn3270 added, bug fix. DD
  17. **  4 Feb 93 Access registration, Search escapes bad chars TBL
  18. **   PARAMETERS TO HTSEARCH AND HTLOADRELATIVE CHANGED
  19. ** 28 May 93 WAIS gateway explicit if no WAIS library linked in.
  20. **    Dec 93 Bug change around, more reentrant, etc
  21. ** 09 May 94 logfile renamed to HTlogfile to avoid clash with WAIS
  22. **  8 Jul 94 Insulate free() from _free structure element.
  23. **    Sep 95 Rewritten, HFN
  24. **    Nov 95 Spawned from HTAccess.c
  25. */
  26. /* Library include files */
  27. #include "WWWLib.h"
  28. #include "WWWApp.h"
  29. #include "WWWCache.h"
  30. #include "WWWRules.h"
  31. #include "HTReqMan.h"
  32. #include "HTHome.h"  /* Implemented here */
  33. /* ------------------------------------------------------------------------- */
  34. /* Find Related Name
  35. ** -----------------
  36. ** Creates a string that can be used as a related name when 
  37. ** calling HTParse initially. 
  38. **  
  39. ** The code for this routine originates from the Linemode 
  40. ** browser and was moved here by howcome@w3.org
  41. ** in order for all clients to take advantage.
  42. ** The string returned must be freed by the caller
  43. */
  44. PUBLIC char * HTFindRelatedName (void)
  45. {
  46.     char* default_default = NULL;       /* Parse home relative to this */
  47.     CONST char *host = HTGetHostName(); 
  48.     StrAllocCopy(default_default, "file://");
  49.     if (host)
  50. StrAllocCat(default_default, host);
  51.     else
  52. StrAllocCat(default_default, "localhost");
  53.     {
  54. char wd[HT_MAX_PATH+1];
  55. #ifdef NO_GETWD
  56. #ifdef HAS_GETCWD       /* System V variant SIGN CHANGED TBL 921006 !! */
  57. char *result = (char *) getcwd(wd, sizeof(wd)); 
  58. #else
  59. char *result = NULL;
  60. HTAlert("This platform does not support neither getwd nor getcwdn");
  61. #endif
  62. #else
  63. char *result = (char *) getwd(wd);
  64. #endif
  65. *(wd+HT_MAX_PATH) = '';
  66. if (result) {
  67. #ifdef VMS 
  68.             /* convert directory name to Unix-style syntax */
  69.     char * disk = strchr (wd, ':');
  70.     char * dir = strchr (wd, '[');
  71.     if (disk) {
  72.         *disk = '';
  73. StrAllocCat (default_default, "/");  /* needs delimiter */
  74. StrAllocCat (default_default, wd);
  75.     }
  76.     if (dir) {
  77. char *p;
  78. *dir = '/';  /* Convert leading '[' */
  79. for (p = dir ; *p != ']'; ++p)
  80. if (*p == '.') *p = '/';
  81. *p = '';  /* Cut on final ']' */
  82. StrAllocCat (default_default, dir);
  83.     }
  84. #else  /* not VMS */
  85. #ifdef WIN32
  86.     char * p = wd ; /* a colon */
  87.     StrAllocCat(default_default, "/");
  88.     while( *p != 0 ) { 
  89. if (*p == '\')          /* change to one true slash */
  90.     *p = '/' ;
  91. p++;
  92.     }
  93.     StrAllocCat( default_default, wd);
  94. #else /* not WIN32 */
  95.     StrAllocCat (default_default, wd);
  96. #endif /* not WIN32 */
  97. #endif /* not VMS */
  98. }
  99.     }
  100.     StrAllocCat(default_default, "/default.html");
  101.     return default_default;
  102. }
  103. /* Generate the anchor for the home page
  104. ** -------------------------------------
  105. **
  106. ** As it involves file access, this should only be done once
  107. ** when the program first runs.
  108. ** This is a default algorithm -- browser don't HAVE to use this.
  109. ** But consistency betwen browsers is STRONGLY recommended!
  110. **
  111. ** Priority order is:
  112. **
  113. ** 1 WWW_HOME environment variable (logical name, etc)
  114. ** 2 ~/WWW/default.html
  115. ** 3 /usr/local/bin/default.html
  116. ** 4 http://www.w3.org/default.html
  117. **
  118. */
  119. PUBLIC HTParentAnchor * HTHomeAnchor (void)
  120. {
  121.     char * my_home_document = NULL;
  122.     char * home = (char *) getenv(LOGICAL_DEFAULT);
  123.     char * ref;
  124.     HTParentAnchor * anchor;
  125.     
  126.     /* Someone telnets in, they get a special home */
  127.     if (home) {
  128.         StrAllocCopy(my_home_document, home);
  129.     } else  if (HTLib_secure()) {     /* Telnet server */
  130.      FILE * fp = fopen(REMOTE_POINTER, "r");
  131. char * status;
  132. if (fp) {
  133.     if ((my_home_document = (char *) HT_MALLOC(HT_MAX_PATH)) == NULL)
  134.         HT_OUTOFMEM("my_home_document ");
  135.     status = fgets(my_home_document, HT_MAX_PATH, fp);
  136.     if (!status) {
  137.         HT_FREE(my_home_document);
  138. my_home_document = NULL;
  139.     }
  140.     fclose(fp);
  141. }
  142. if (!my_home_document) StrAllocCopy(my_home_document, REMOTE_ADDRESS);
  143.     }
  144. #ifdef unix
  145.     if (!my_home_document) {
  146. FILE * fp = NULL;
  147. char * home = (char *) getenv("HOME");
  148. if (home) { 
  149.     if ((my_home_document = (char  *) HT_MALLOC(strlen(home)+1+ strlen(PERSONAL_DEFAULT)+1)) == NULL)
  150.         HT_OUTOFMEM("HTLocalName");
  151.     sprintf(my_home_document, "%s/%s", home, PERSONAL_DEFAULT);
  152.     fp = fopen(my_home_document, "r");
  153. }
  154. if (!fp) {
  155.     StrAllocCopy(my_home_document, LOCAL_DEFAULT_FILE);
  156.     fp = fopen(my_home_document, "r");
  157. }
  158. if (fp) {
  159.     fclose(fp);
  160. } else {
  161.     if (WWWTRACE)
  162. TTYPrint(TDEST,
  163. "HTBrowse: No local home document ~/%s or %sn",
  164. PERSONAL_DEFAULT, LOCAL_DEFAULT_FILE);
  165.     HT_FREE(my_home_document);
  166.     my_home_document = NULL;
  167. }
  168.     }
  169. #endif
  170.     ref = HTParse(my_home_document ? my_home_document :
  171.   HTLib_secure() ? REMOTE_ADDRESS : LAST_RESORT, "file:",
  172.   PARSE_ACCESS|PARSE_HOST|PARSE_PATH|PARSE_PUNCTUATION);
  173.     if (my_home_document) {
  174. if (WWWTRACE)
  175.     TTYPrint(TDEST,
  176.    "HTAccess.... `%s' used for custom home page asn`%s'n",
  177.     my_home_document, ref);
  178. HT_FREE(my_home_document);
  179.     }
  180.     anchor = (HTParentAnchor*) HTAnchor_findAddress(ref);
  181.     HT_FREE(ref);
  182.     return anchor;
  183. }
  184. /* Application "BEFORE" Callback
  185. ** -----------------------------
  186. ** This function uses all the functionaly that the app part of the Library
  187. ** gives for URL translations BEFORE a request is isseud.
  188. ** It checks for Cache, proxy, and gateway (in that order)
  189. ** returns HT_LOADED We already have this
  190. ** HT_ERROR We can't load this
  191. ** HT_OK Success
  192. */
  193. PUBLIC int HTLoadStart (HTRequest * request, int status)
  194. {    
  195.     HTParentAnchor *anchor = HTRequest_anchor(request);
  196.     char * addr = HTAnchor_address((HTAnchor *) anchor);
  197.     HTReload mode = HTRequest_reloadMode(request);
  198.     /*
  199.     ** Check if document is already loaded. 
  200.     */
  201.     if (mode != HT_FORCE_RELOAD) {
  202. if (HTMemoryCache_check(request) == HT_LOADED) {
  203.     HT_FREE(addr);
  204.     return HT_LOADED;
  205. }
  206.     } else {
  207. HTRequest_addGnHd(request, HT_G_NO_CACHE);   /* No-cache pragma */
  208. HTAnchor_clearHeader(request->anchor);
  209.     }
  210.     /*
  211.     ** Check if we have any rule translations to do
  212.     */
  213.     {
  214. HTList *list = HTRule_global();
  215. char * physical = HTRule_translate(list, addr, NO);
  216. if (!physical) {
  217.     char *url = HTAnchor_address((HTAnchor *) request->anchor);
  218.     if (url) {
  219. HTUnEscape(url);
  220. HTRequest_addError(request, ERR_FATAL, NO, HTERR_FORBIDDEN,
  221.    (void *) url, (int) strlen(url), "HTLoad");
  222.     } else {
  223. HTRequest_addError(request, ERR_FATAL, NO, HTERR_FORBIDDEN,
  224.    NULL, 0, "HTLoad");
  225.     }
  226.     HT_FREE(addr);
  227.     HT_FREE(url);
  228.     return HT_ERROR;
  229. }
  230. HTAnchor_setPhysical(anchor, physical);
  231. HT_FREE(physical);
  232.     }
  233.     /*
  234.     ** Check local Disk Cache (if we are not forced to reload), then
  235.     ** for proxy, and finally gateways
  236.     */
  237.     {
  238. char *newaddr=NULL;
  239. if (mode != HT_FORCE_RELOAD && (newaddr = HTCache_getReference(addr))){
  240.     if (mode != HT_CACHE_REFRESH) {
  241. HTAnchor_setPhysical(anchor, newaddr);
  242. HTAnchor_setCacheHit(anchor, YES);
  243.     } else {  /* If refresh version in file cache */
  244. HTRequest_addGnHd(request, HT_G_NO_CACHE);
  245. HTRequest_addRqHd(request, HT_C_IMS);
  246.     }
  247. } else if ((newaddr = HTProxy_find(addr))) {
  248.     StrAllocCat(newaddr, addr);
  249.     request->using_proxy = YES;
  250.     HTAnchor_setPhysical(anchor, newaddr);
  251. } else if ((newaddr = HTGateway_find(addr))) {
  252.     char * path = HTParse(addr, "",
  253.   PARSE_HOST + PARSE_PATH + PARSE_PUNCTUATION);
  254. /* Chop leading / off to make host into part of path */
  255.     char * gatewayed = HTParse(path+1, newaddr, PARSE_ALL);
  256.             HTAnchor_setPhysical(anchor, gatewayed);
  257.     HT_FREE(path);
  258.     HT_FREE(gatewayed);
  259. } else {
  260.     request->using_proxy = NO;      /* We don't use proxy or gateway */
  261. }
  262. HT_FREE(newaddr);
  263.     }
  264.     HT_FREE(addr);
  265.     return HT_OK;
  266. }
  267. /* Application "AFTER" Callback
  268. ** -----------------------------
  269. ** This function uses all the functionaly that the app part of the Library
  270. ** gives for handling AFTER a request.
  271. */
  272. PUBLIC int HTLoadTerminate (HTRequest * request, int status)
  273. {
  274.     char * uri = HTAnchor_address((HTAnchor*)request->anchor);
  275.     switch (status) {
  276.       case HT_LOADED:
  277. if (PROT_TRACE)
  278.     TTYPrint(TDEST, "Load End.... OK: `%s' has been accessedn", uri);
  279. break;
  280.       case HT_NO_DATA:
  281. if (PROT_TRACE)
  282.     TTYPrint(TDEST, "Load End.... OK BUT NO DATA: `%s'n", uri);
  283. break;
  284.       case HT_INTERRUPTED:
  285. if (PROT_TRACE)
  286.     TTYPrint(TDEST, "Load End.... INTERRUPTED: `%s'n", uri);
  287. break;
  288.       case HT_RETRY:
  289. if (PROT_TRACE)
  290.     TTYPrint(TDEST, "Load End.... NOT AVAILABLE, RETRY AT %ldn",
  291.      HTRequest_retryTime(request));
  292. break;
  293.       case HT_ERROR:
  294. {
  295.     HTAlertCallback *cbf = HTAlert_find(HT_A_MESSAGE);
  296.     if (cbf) (*cbf)(request, HT_A_MESSAGE, HT_MSG_NULL, NULL,
  297.     request->error_stack, NULL);
  298. }
  299. if (PROT_TRACE)
  300.     TTYPrint(TDEST, "Load End.... ERROR: Can't access `%s'n",
  301.      uri ? uri : "<UNKNOWN>");
  302. break;
  303.       default:
  304. if (PROT_TRACE)
  305.     TTYPrint(TDEST, "Load End.... UNKNOWN RETURN CODE %dn", status);
  306. break;
  307.     }
  308.     /* Should we do logging? */
  309.     if (HTLog_isOpen()) HTLog_add(request, status);
  310.     HT_FREE(uri);
  311.     return HT_OK;
  312. }