Annotation of Amaya/amaya/AHTURLTools.c, revision 1.55

1.7       cvs         1: /*
                      2:  *
                      3:  *  (c) COPYRIGHT MIT and INRIA, 1996.
                      4:  *  Please first read the full copyright statement in file COPYRIGHT.
                      5:  *
                      6:  */
1.9       cvs         7: 
1.10      cvs         8: /*
                      9:  * AHTURLTools.c: contains all the functions for testing, manipulating,
1.25      cvs        10:  * and normalizing URLs. It also contains a local copy of the libWWW
                     11:  * URL parsing functions.
1.10      cvs        12:  *
                     13:  * Authors: J. Kahan, I. Vatton
1.45      cvs        14:  *          R. Guetari (Stuff related to Windows).
1.10      cvs        15:  *
                     16:  */
1.7       cvs        17:  
1.15      cvs        18: #define THOT_EXPORT extern
1.3       cvs        19: #include "amaya.h"
                     20: 
1.8       cvs        21: #include "init_f.h"
                     22: #include "AHTURLTools_f.h"
                     23: 
1.24      cvs        24: #define MAX_PRINT_URL_LENGTH 50
1.29      cvs        25: typedef struct _HTURI {
                     26:     char * access;             /* Now known as "scheme" */
                     27:     char * host;
                     28:     char * absolute;
                     29:     char * relative;
                     30:     char * fragment;
                     31: } HTURI;
1.24      cvs        32: 
1.28      cvs        33: 
                     34: /*----------------------------------------------------------------------
                     35:   ConvertToLowerCase
                     36:   Converts a string to lowercase.
                     37:   ----------------------------------------------------------------------*/
1.22      cvs        38: #ifdef __STDC__
1.38      cvs        39: void         ConvertToLowerCase (char *string)
1.28      cvs        40: #else  /* __STDC__ */
1.38      cvs        41: void         ConvertToLowerCase (string)
1.28      cvs        42: char                *string;
                     43: 
                     44: #endif /* __STDC__ */
                     45: {
                     46:  int i;
                     47: 
                     48:  if (!string)
                     49:    return;
                     50: 
                     51:  for (i = 0; string[i] != EOS; i++)
                     52:    string[i] = tolower (string[i]);
                     53: }
1.22      cvs        54: 
1.8       cvs        55: /*----------------------------------------------------------------------
1.11      cvs        56:   ExplodeURL 
1.8       cvs        57:   ----------------------------------------------------------------------*/
                     58: #ifdef __STDC__
                     59: void                ExplodeURL (char *url, char **proto, char **host, char **dir, char **file)
                     60: #else
                     61: void                ExplodeURL (url, proto, host, dir, file)
                     62: char               *url;
                     63: char              **proto;
                     64: char              **host;
                     65: char              **dir;
                     66: char              **file;
                     67: 
                     68: #endif
                     69: {
1.33      cvs        70:    char            *curr, *temp;
                     71:    char             used_sep;
1.32      cvs        72: 
1.33      cvs        73:    if (url && strchr (url, URL_SEP))
                     74:      used_sep = URL_SEP;
                     75:    else
                     76:      used_sep = DIR_SEP;
1.8       cvs        77: 
                     78:    if ((url == NULL) || (proto == NULL) || (host == NULL) ||
                     79:        (dir == NULL) || (file == NULL))
                     80:       return;
                     81: 
                     82:    /* initialize every pointer */
                     83:    *proto = *host = *dir = *file = NULL;
                     84: 
                     85:    /* skip any leading space */
                     86:    while ((*url == SPACE) || (*url == TAB))
                     87:       url++;
1.9       cvs        88:    curr = url;
                     89:    if (*curr == 0)
1.8       cvs        90:       goto finished;
                     91: 
                     92:    /* go to the end of the URL */
1.9       cvs        93:    while ((*curr != 0) && (*curr != SPACE) && (*curr != '\b') &&
                     94:          (*curr != '\r') && (*curr != EOL))
                     95:       curr++;
1.8       cvs        96: 
                     97:    /* mark the end of the chain */
1.9       cvs        98:    *curr = EOS;
                     99:    curr--;
                    100:    if (curr <= url)
1.8       cvs       101:       goto finished;
                    102: 
                    103:    /* search the next DIR_SEP indicating the beginning of the file name */
                    104:    do
1.11      cvs       105:      curr--;
1.33      cvs       106:    while ((curr >= url) && (*curr != used_sep));
1.11      cvs       107: 
1.9       cvs       108:    if (curr < url)
1.8       cvs       109:       goto finished;
1.9       cvs       110:    *file = curr + 1;
1.8       cvs       111: 
                    112:    /* mark the end of the dir */
1.9       cvs       113:    *curr = EOS;
                    114:    curr--;
                    115:    if (curr < url)
1.8       cvs       116:       goto finished;
                    117: 
1.29      cvs       118:    /* search for the DIR_STR indicating the host name start */
1.33      cvs       119:    while ((curr > url) && ((*curr != used_sep) || (*(curr + 1) != used_sep)))
1.9       cvs       120:       curr--;
1.8       cvs       121: 
                    122:    /* if we found it, separate the host name from the directory */
1.33      cvs       123:    if ((*curr == DIR_SEP) && (*(curr + 1) == used_sep))
1.8       cvs       124:      {
1.9       cvs       125:        *host = temp = curr + 2;
1.33      cvs       126:        while ((*temp != 0) && (*temp != used_sep))
1.8       cvs       127:           temp++;
1.33      cvs       128:        if (*temp == used_sep)
1.8       cvs       129:          {
                    130:             *temp = EOS;
                    131:             *dir = temp + 1;
                    132:          }
                    133:      }
                    134:    else
1.11      cvs       135:      *dir = curr;
                    136: 
1.9       cvs       137:    if (curr <= url)
1.8       cvs       138:       goto finished;
                    139: 
                    140:    /* mark the end of the proto */
1.9       cvs       141:    *curr = EOS;
                    142:    curr--;
                    143:    if (curr < url)
1.8       cvs       144:       goto finished;
                    145: 
1.32      cvs       146:    if (*curr == ':')
1.8       cvs       147:      {
1.9       cvs       148:        *curr = EOS;
                    149:        curr--;
1.8       cvs       150:      }
                    151:    else
                    152:       goto finished;
1.11      cvs       153: 
1.9       cvs       154:    if (curr < url)
1.8       cvs       155:       goto finished;
1.9       cvs       156:    while ((curr > url) && (isalpha (*curr)))
                    157:       curr--;
                    158:    *proto = curr;
1.8       cvs       159: 
                    160:  finished:;
                    161: 
                    162: #ifdef AMAYA_DEBUG
                    163:    fprintf (stderr, "ExplodeURL(%s)\n\t", url);
                    164:    if (*proto)
                    165:       fprintf (stderr, "proto : %s, ", *proto);
                    166:    if (*host)
                    167:       fprintf (stderr, "host : %s, ", *host);
                    168:    if (*dir)
                    169:       fprintf (stderr, "dir : %s, ", *dir);
                    170:    if (*file)
                    171:       fprintf (stderr, "file : %s ", *file);
                    172:    fprintf (stderr, "\n");
                    173: #endif
                    174: 
                    175: }
1.3       cvs       176: 
1.4       cvs       177: /*----------------------------------------------------------------------
1.9       cvs       178:   IsHTMLName                                                         
                    179:   returns TRUE if path points to an HTML resource.
1.4       cvs       180:   ----------------------------------------------------------------------*/
1.3       cvs       181: #ifdef __STDC__
1.34      cvs       182: boolean             IsHTMLName (const char *path)
1.3       cvs       183: #else  /* __STDC__ */
                    184: boolean             IsHTMLName (path)
1.34      cvs       185: const char         *path;
1.3       cvs       186: #endif /* __STDC__ */
                    187: {
1.5       cvs       188:    char                temppath[MAX_LENGTH];
                    189:    char                suffix[MAX_LENGTH];
                    190:    char                nsuffix[MAX_LENGTH];
                    191:    int                 i;
                    192: 
                    193:    if (!path)
1.37      cvs       194:       return (FALSE);
1.5       cvs       195: 
                    196:    strcpy (temppath, path);
                    197:    ExtractSuffix (temppath, suffix);
                    198: 
                    199:    /* Normalize the suffix */
                    200:    i = 0;
1.39      cvs       201:    while (suffix[i] != EOS && i < MAX_LENGTH -1)
1.13      cvs       202:      {
1.25      cvs       203:        nsuffix[i] = tolower (suffix[i]);
1.13      cvs       204:        i++;
                    205:      }
1.5       cvs       206:    nsuffix[i] = EOS;
1.39      cvs       207:    if ((!strcmp (nsuffix, "html")) ||
                    208:        (!strcmp (nsuffix, "htm")) ||
                    209:        (!strcmp (nsuffix, "shtml")))
                    210:      return (TRUE);
1.22      cvs       211:    else if (!strcmp (nsuffix, "gz"))
1.13      cvs       212:      {
1.39      cvs       213:        /* take into account compressed files */
1.13      cvs       214:        ExtractSuffix (temppath, suffix);       
                    215:        /* Normalize the suffix */
                    216:        i = 0;
1.39      cvs       217:        while (suffix[i] != EOS && i < MAX_LENGTH -1)
1.13      cvs       218:         {
1.25      cvs       219:           nsuffix[i] = tolower (suffix[i]);
1.13      cvs       220:           i++;
                    221:         }
                    222:        nsuffix[i] = EOS;
1.39      cvs       223:        if ((!strcmp (nsuffix, "html")) ||
                    224:           (!strcmp (nsuffix, "htm")) ||
                    225:           (!strcmp (nsuffix, "shtml")))
                    226:         return (TRUE);
                    227:        else
1.13      cvs       228:         return (FALSE);
                    229:      }
                    230:    else
1.39      cvs       231:      return (FALSE);
1.3       cvs       232: }
                    233: 
1.4       cvs       234: /*----------------------------------------------------------------------
1.9       cvs       235:   IsImageName                                
                    236:   returns TRUE if path points to an image resource.
1.4       cvs       237:   ----------------------------------------------------------------------*/
1.3       cvs       238: #ifdef __STDC__
1.34      cvs       239: boolean             IsImageName (const char *path)
1.3       cvs       240: #else  /* __STDC__ */
                    241: boolean             IsImageName (path)
1.34      cvs       242: const char         *path;
1.3       cvs       243: #endif /* __STDC__ */
                    244: {
1.5       cvs       245:    char                temppath[MAX_LENGTH];
                    246:    char                suffix[MAX_LENGTH];
                    247:    char                nsuffix[MAX_LENGTH];
                    248:    int                 i;
                    249: 
                    250:    if (!path)
1.13      cvs       251:       return (FALSE);
1.5       cvs       252: 
                    253:    strcpy (temppath, path);
                    254:    ExtractSuffix (temppath, suffix);
                    255: 
                    256:    /* Normalize the suffix */
                    257:    i = 0;
1.39      cvs       258:    while (suffix[i] != EOS && i < MAX_LENGTH -1)
1.13      cvs       259:      {
1.25      cvs       260:        nsuffix[i] = tolower (suffix[i]);
1.13      cvs       261:        i++;
                    262:      }
1.5       cvs       263:    nsuffix[i] = EOS;
1.39      cvs       264:    if ((!strcmp (nsuffix, "gif")) || (!strcmp (nsuffix, "xbm")) ||
                    265:        (!strcmp (nsuffix, "xpm")) || (!strcmp (nsuffix, "jpg")) ||
                    266:        (!strcmp (nsuffix, "png")) || (!strcmp (nsuffix, "au")))
                    267:       return (TRUE);
                    268:    return (FALSE);
1.3       cvs       269: }
                    270: 
1.4       cvs       271: /*----------------------------------------------------------------------
1.9       cvs       272:   IsTextName                                                         
1.4       cvs       273:   ----------------------------------------------------------------------*/
1.3       cvs       274: #ifdef __STDC__
1.34      cvs       275: boolean             IsTextName (const char *path)
1.3       cvs       276: #else  /* __STDC__ */
                    277: boolean             IsTextName (path)
1.34      cvs       278: const char         *path;
1.3       cvs       279: 
                    280: #endif /* __STDC__ */
                    281: {
1.5       cvs       282:    char                temppath[MAX_LENGTH];
                    283:    char                suffix[MAX_LENGTH];
                    284:    char                nsuffix[MAX_LENGTH];
                    285:    int                 i;
                    286: 
                    287:    if (!path)
1.13      cvs       288:      return (FALSE);
1.5       cvs       289: 
                    290:    strcpy (temppath, path);
                    291:    ExtractSuffix (temppath, suffix);
                    292: 
                    293:    /* Normalize the suffix */
                    294:    i = 0;
1.39      cvs       295:    while (suffix[i] != EOS && i < MAX_LENGTH -1)
1.5       cvs       296:      {
1.25      cvs       297:        nsuffix[i] = tolower (suffix[i]);
1.5       cvs       298:        i++;
                    299:      }
                    300:    nsuffix[i] = EOS;
                    301: 
1.39      cvs       302:    if ((!strcmp (nsuffix, "txt")) || (!strcmp (nsuffix, "dtd")))
1.13      cvs       303:       return (TRUE);
1.22      cvs       304:    else if (!strcmp (nsuffix, "gz"))
1.13      cvs       305:      {
1.39      cvs       306:        /* take into account compressed files */
1.13      cvs       307:        ExtractSuffix (temppath, suffix);       
                    308:        /* Normalize the suffix */
                    309:        i = 0;
1.39      cvs       310:        while (suffix[i] != EOS && i < MAX_LENGTH -1)
1.13      cvs       311:         {
1.25      cvs       312:           nsuffix[i] = tolower (suffix[i]);
1.13      cvs       313:           i++;
                    314:         }
                    315:        nsuffix[i] = EOS;
1.39      cvs       316:        if ((!strcmp (nsuffix, "txt")) || (!strcmp (nsuffix, "dtd")))
1.13      cvs       317:         return (TRUE);
                    318:        else
                    319:         return (FALSE);
                    320:      }
                    321:    else
                    322:      return (FALSE);
1.3       cvs       323: }
                    324: 
1.4       cvs       325: /*----------------------------------------------------------------------
1.9       cvs       326:   IsHTTPPath                                     
                    327:   returns TRUE if path is in fact an http URL.
1.4       cvs       328:   ----------------------------------------------------------------------*/
1.3       cvs       329: #ifdef __STDC__
1.34      cvs       330: boolean             IsHTTPPath (const char *path)
1.3       cvs       331: #else  /* __STDC__ */
                    332: boolean             IsHTTPPath (path)
1.34      cvs       333: const char         *path;
1.3       cvs       334: #endif /* __STDC__ */
                    335: {
1.5       cvs       336:    if (!path)
                    337:       return FALSE;
1.3       cvs       338: 
1.5       cvs       339:    if (strncmp (path, "http:", 5) != 0)
                    340:       return FALSE;
                    341:    return TRUE;
1.3       cvs       342: }
                    343: 
1.4       cvs       344: /*----------------------------------------------------------------------
1.9       cvs       345:   IsWithParameters                           
                    346:   returns TRUE if url has a concatenated query string.
1.4       cvs       347:   ----------------------------------------------------------------------*/
1.3       cvs       348: #ifdef __STDC__
1.34      cvs       349: boolean             IsWithParameters (const char *url)
1.3       cvs       350: #else  /* __STDC__ */
1.9       cvs       351: boolean             IsWithParameters (url)
1.34      cvs       352: const char         *url;
1.3       cvs       353: #endif /* __STDC__ */
                    354: {
1.5       cvs       355:    int                 i;
1.3       cvs       356: 
1.9       cvs       357:    if ((!url) || (url[0] == EOS))
1.5       cvs       358:       return FALSE;
1.3       cvs       359: 
1.9       cvs       360:    i = strlen (url) - 1;
                    361:    while (i > 0 && url[i--] != '?')
1.5       cvs       362:       if (i < 0)
                    363:         return FALSE;
1.3       cvs       364: 
1.5       cvs       365:    /* There is a parameter */
                    366:    return TRUE;
1.3       cvs       367: }
                    368: 
1.4       cvs       369: /*----------------------------------------------------------------------
1.9       cvs       370:   IsW3Path                                           
                    371:   returns TRUE if path is in fact a URL.
1.4       cvs       372:   ----------------------------------------------------------------------*/
1.3       cvs       373: #ifdef __STDC__
1.34      cvs       374: boolean             IsW3Path (const char *path)
1.3       cvs       375: #else  /* __STDC__ */
                    376: boolean             IsW3Path (path)
1.34      cvs       377: const char               *path;
1.3       cvs       378: #endif /* __STDC__ */
                    379: {
1.5       cvs       380:    if ((strncmp (path, "http:", 5)) && (strncmp (path, "ftp:", 4)) &&
                    381:        (strncmp (path, "telnet:", 7)) && (strncmp (path, "wais:", 5)) &&
                    382:        (strncmp (path, "news:", 5)) && (strncmp (path, "gopher:", 7)) &&
                    383:        (strncmp (path, "mailto:", 7)) && (strncmp (path, "archie:", 7)))
                    384:       return FALSE;
                    385:    return TRUE;
1.3       cvs       386: }
                    387: 
1.4       cvs       388: /*----------------------------------------------------------------------
1.9       cvs       389:   IsValidProtocol                                                    
                    390:   returns true if the url protocol is supported by Amaya.
1.4       cvs       391:   ----------------------------------------------------------------------*/
1.3       cvs       392: #ifdef __STDC__
1.34      cvs       393: boolean             IsValidProtocol (const char *url)
1.3       cvs       394: #else  /* __STDC__ */
1.9       cvs       395: boolean             IsValidProtocol (url)
1.34      cvs       396: const char         *url;
1.3       cvs       397: #endif /* __STDC__ */
                    398: {
1.26      cvs       399:    if (!strncmp (url, "http:", 5))
1.22      cvs       400:        /* experimental */
1.26      cvs       401:       /***  || !strncmp (url, "ftp:", 4)) ***/
1.24      cvs       402:      /*** || !strncmp (path, "news:", 5)***/ 
1.8       cvs       403:       return (TRUE);
1.5       cvs       404:    else
1.8       cvs       405:       return (FALSE);
1.3       cvs       406: }
                    407: 
1.31      cvs       408: 
                    409: /*----------------------------------------------------------------------
                    410:    GetBaseURL
                    411:    normalizes orgName according to a base associated with doc, and
                    412:    following the standard URL format rules.
                    413:    The function returns the base used to solve relative URL and SRC:
                    414:       - the base of the document,
                    415:       - or the document path (without document name).
                    416:   ----------------------------------------------------------------------*/
                    417: #ifdef __STDC__
                    418: char               *GetBaseURL (Document doc)
                    419: #else  /* __STDC__ */
                    420: char               *GetBaseURL (doc)
                    421: Document            doc;
                    422: #endif /* __STDC__ */
                    423: {
                    424:   Element             el;
                    425:   ElementType         elType;
                    426:   AttributeType       attrType;
                    427:   Attribute           attr;
                    428:   char               *ptr, *basename;
                    429:   int                 length;
                    430: 
                    431:   basename = TtaGetMemory (MAX_LENGTH);
1.39      cvs       432:   strncpy (basename, DocumentURLs[doc], MAX_LENGTH-1);
                    433:   basename[MAX_LENGTH-1] = EOS;
1.31      cvs       434:   length = MAX_LENGTH -1;
                    435:   /* get the root element    */
                    436:   el = TtaGetMainRoot (doc);
                    437:   /* search the BASE element */
                    438:   elType.ElSSchema = TtaGetDocumentSSchema (doc);
                    439:   elType.ElTypeNum = HTML_EL_BASE;
                    440:   el = TtaSearchTypedElement (elType, SearchInTree, el);
                    441:   if (el)
                    442:     {
                    443:       /*  The document has a BASE element -> Get the HREF attribute */
                    444:       attrType.AttrSSchema = elType.ElSSchema;
                    445:       attrType.AttrTypeNum = HTML_ATTR_HREF_;
                    446:       attr = TtaGetAttribute (el, attrType);
                    447:       if (attr)
                    448:        {
                    449:          /* Use the base path of the document */
                    450:          TtaGiveTextAttributeValue (attr, basename, &length);
                    451:          /* base and orgName have to be separated by a DIR_SEP */
                    452:          length--;
1.43      cvs       453:          if (basename[0] != EOS && basename[length] != URL_SEP && basename[length] != DIR_SEP) 
1.31      cvs       454:            /* verify if the base has the form "protocol://server:port" */
                    455:            {
1.33      cvs       456:              ptr = AmayaParseUrl (basename, "", AMAYA_PARSE_ACCESS |
                    457:                                                 AMAYA_PARSE_HOST |
                    458:                                                 AMAYA_PARSE_PUNCTUATION);
1.31      cvs       459:              if (ptr && !strcmp (ptr, basename))
                    460:                {
1.43      cvs       461:                  /* it has this form, we complete it by adding a URL_STR  */
                    462:                  if (strchr (basename, DIR_SEP))
                    463:                    strcat (basename, DIR_STR);
                    464:                  else
                    465:                    strcat (basename, URL_STR);
1.31      cvs       466:                  length++;
                    467:                }
                    468:              if (ptr)
                    469:                TtaFreeMemory (ptr);
                    470:            }
                    471:        }
1.33      cvs       472:       }
                    473:   
1.31      cvs       474:   /* Remove anything after the last DIR_SEP char. If no such char is found,
                    475:    * then search for the first ":" char, hoping that what's before that is a
                    476:    * protocol. If found, end the string there. If neither char is found,
                    477:    * then discard the whole base element.
                    478:    */
                    479:   length = strlen (basename) - 1;
                    480:   /* search for the last DIR_SEP char */
1.43      cvs       481:   while (length >= 0  && basename[length] != URL_SEP && basename[length] != DIR_SEP)
1.31      cvs       482:     length--;
                    483:   if (length >= 0)
                    484:     /* found the last DIR_SEP char, end the string there */
                    485:     basename[length + 1] = EOS;                   
                    486:   else
                    487:     /* search for the first PATH_STR char */
                    488:     {
1.32      cvs       489:       for (length = 0; basename[length] != ':' && 
1.31      cvs       490:             basename[length] != EOS; length ++);
1.32      cvs       491:       if (basename[length] == ':')
1.31      cvs       492:        /* found, so end the string there */
                    493:        basename[length + 1] = EOS;
                    494:       else
                    495:        /* not found, discard the base */
                    496:        basename[0] = EOS;
                    497:     }
                    498:   return (basename);
                    499: }
                    500: 
                    501: 
1.4       cvs       502: /*----------------------------------------------------------------------
1.40      cvs       503:    GetLocalPath
                    504:    Allocate and return the local document path associated to the url
                    505:   ----------------------------------------------------------------------*/
                    506: #ifdef __STDC__
                    507: char      *GetLocalPath (Document doc, char *url)
                    508: #else  /* __STDC__ */
                    509: char      *GetLocalPath (doc, url)
                    510: Document   doc;
                    511: char      *url;
                    512: #endif /* __STDC__ */
                    513: {
1.46      cvs       514:   char    *ptr, *n;
1.40      cvs       515:   char    *documentname;
1.41      cvs       516:   char     url_sep;
1.40      cvs       517:   int      len;
                    518:   boolean  noFile;
                    519: 
                    520:   if (url != NULL)
                    521:     {
                    522:       /* check whether the file name exists */
                    523:       len = strlen (url) - 1;
1.41      cvs       524:       if (IsW3Path)
                    525:        url_sep = '/';
                    526:       else 
                    527:        url_sep = DIR_SEP;
                    528:       noFile = (url[len] == url_sep);
1.40      cvs       529:       if (noFile)
                    530:        url[len] = EOS;
1.47      cvs       531:       ptr = TtaGetMemory (MAX_LENGTH);
                    532:       documentname = TtaGetMemory (MAX_LENGTH);
1.40      cvs       533:       TtaExtractName (url, ptr, documentname);
                    534:       sprintf (ptr, "%s%s%d%s", TempFileDirectory, DIR_STR, doc, DIR_STR);
                    535:       if (!TtaCheckDirectory (ptr))
                    536:        /* directory did not exist */
                    537:        mkdir (ptr, S_IRWXU);
1.47      cvs       538: 
                    539:       /* don't include the query string within document name */
                    540:       n = strrchr(documentname, '?');
                    541:       if (n != NULL)
                    542:        *n = EOS;
1.46      cvs       543:       /* don't include ':' within document name */
                    544:       n = strchr (documentname, ':');
                    545:       if (n != NULL)
                    546:        *n = EOS;
1.40      cvs       547:       strcat (ptr, documentname);
                    548:       TtaFreeMemory (documentname);
                    549:       /* restore the url */
                    550:       if (noFile)
1.41      cvs       551:        url[len] = url_sep;
1.40      cvs       552:       return (ptr);
                    553:     }
                    554:   else
                    555:     return (NULL);
                    556: }
                    557: 
                    558: 
                    559: /*----------------------------------------------------------------------
1.9       cvs       560:    NormalizeURL
                    561:    normalizes orgName according to a base associated with doc, and
                    562:    following the standard URL format rules.
1.53      cvs       563:    if doc is 0 and otherPath not NULL, normalizes orgName according to this
                    564:    other path.
1.9       cvs       565:    The function returns the new complete and normalized URL 
1.12      cvs       566:    or file name path (newName) and the name of the document (docName).        
1.9       cvs       567:    N.B. If the function can't find out what's the docName, it assigns
                    568:    the name "noname.html".
1.4       cvs       569:   ----------------------------------------------------------------------*/
1.3       cvs       570: #ifdef __STDC__
1.53      cvs       571: void                NormalizeURL (char *orgName, Document doc, char *newName, char *docName, char *otherPath)
1.3       cvs       572: #else  /* __STDC__ */
1.53      cvs       573: void                NormalizeURL (orgName, doc, newName, docName, otherPath)
1.3       cvs       574: char               *orgName;
                    575: Document            doc;
                    576: char               *newName;
                    577: char               *docName;
1.53      cvs       578: char               *otherPath;
1.3       cvs       579: #endif /* __STDC__ */
                    580: {
1.31      cvs       581:    char               *basename;
1.18      cvs       582:    char                tempOrgName[MAX_LENGTH];
1.5       cvs       583:    char               *ptr;
1.49      cvs       584:    char                used_sep;
1.5       cvs       585:    int                 length;
1.49      cvs       586:    boolean             check;
1.5       cvs       587: 
1.44      cvs       588: #  ifdef _WINDOWS
                    589:    int ndx;
                    590: #  endif /* _WINDOWS */
                    591: 
1.5       cvs       592:    if (!newName || !docName)
                    593:       return;
1.18      cvs       594: 
1.32      cvs       595:    if (doc != 0)
1.53      cvs       596:      basename = GetBaseURL (doc);
                    597:    else if (otherPath != NULL)
                    598:      basename = TtaStrdup (otherPath);
1.32      cvs       599:    else
1.53      cvs       600:      basename = NULL;
1.32      cvs       601: 
1.18      cvs       602:    /*
1.31      cvs       603:     * Clean orgName
                    604:     * Make sure we have a complete orgName, without any leading or trailing
                    605:     * white spaces, or trailinbg new lines
                    606:     */
1.5       cvs       607:    ptr = orgName;
1.18      cvs       608:    /* skip leading white space and new line characters */
1.19      cvs       609:    while ((*ptr == ' ' || *ptr == EOL) && *ptr++ != EOS);
1.39      cvs       610:    strncpy (tempOrgName, ptr, MAX_LENGTH -1);
                    611:    tempOrgName[MAX_LENGTH -1] = EOS;
1.18      cvs       612:    /*
1.31      cvs       613:     * Make orgName a complete URL
                    614:     * If the URL does not include a protocol, then try to calculate
                    615:     * one using the doc's base element (if it exists),
                    616:     */
1.53      cvs       617:    if (tempOrgName[0] == EOS)
                    618:      {
                    619:        newName[0] = EOS;
                    620:        TtaFreeMemory (basename);
                    621:        return;
                    622:      }
1.49      cvs       623: 
                    624:    /* clean trailing white space */
                    625:    length = strlen (tempOrgName) - 1;
1.53      cvs       626:    while (tempOrgName[length] == SPACE && tempOrgName[length] == EOL)
                    627:      {
                    628:        tempOrgName[length] = EOS;
                    629:        length--;
                    630:      }
1.50      cvs       631: 
1.55    ! cvs       632:    /* remove extra dot (which dot???) */
        !           633:    /* ugly, but faster than a strcmp */
        !           634:    if (tempOrgName[length] == '.'
        !           635:        && (length == 0 || tempOrgName[length-1] != '.'))
        !           636:         tempOrgName[length] = EOS;
1.50      cvs       637: 
1.53      cvs       638:    if (IsW3Path (tempOrgName))
                    639:      {
                    640:        /* the name is complete, go to the Sixth Step */
                    641:        strcpy (newName, tempOrgName);
                    642:        SimplifyUrl (&newName);
                    643:        /* verify if the URL has the form "protocol://server:port" */
                    644:        ptr = AmayaParseUrl (newName, "", AMAYA_PARSE_ACCESS | AMAYA_PARSE_HOST | AMAYA_PARSE_PUNCTUATION);
                    645:        if (ptr && !strcmp (ptr, newName)) /* it has this form, we complete it by adding a DIR_STR  */
1.50      cvs       646:          strcat (newName, URL_STR);
1.49      cvs       647: 
1.53      cvs       648:        if (ptr)
1.50      cvs       649:          TtaFreeMemory (ptr);
1.53      cvs       650:      }
                    651:    else if ( basename == NULL)
                    652:      /* the name is complete, go to the Sixth Step */
1.18      cvs       653:      strcpy (newName, tempOrgName);
1.53      cvs       654:    else
                    655:      {
1.31      cvs       656:        /* Calculate the absolute URL, using the base or document URL */
1.44      cvs       657: #      ifdef _WINDOWS
1.53      cvs       658:        if (!IsW3Path (basename))
                    659:         {
                    660:           length = strlen (tempOrgName);
                    661:           for (ndx = 0; ndx < length; ndx++)
                    662:             if (tempOrgName [ndx] == '/')
                    663:               tempOrgName [ndx] = '\\';
                    664:         }
1.44      cvs       665: #      endif /* _WINDOWS */
1.25      cvs       666:        ptr = AmayaParseUrl (tempOrgName, basename, AMAYA_PARSE_ALL);
1.53      cvs       667:        if (ptr)
                    668:         {
                    669:           SimplifyUrl (&ptr);
                    670:           strcpy (newName, ptr);
                    671:           TtaFreeMemory (ptr);
                    672:         }
                    673:        else
                    674:         newName[0] = EOS;
                    675:      }
1.36      cvs       676: 
                    677:    TtaFreeMemory (basename);
1.18      cvs       678:    /*
1.31      cvs       679:     * Prepare the docname that will refer to this ressource in the
                    680:     * .amaya directory. If the new URL finishes on DIR_SEP, then use
                    681:     * noname.html as a default ressource name
1.18      cvs       682:    */
1.53      cvs       683:    if (newName[0] != EOS)
                    684:      {
                    685:        length = strlen (newName) - 1;
                    686:        if (newName[length] == URL_SEP || newName[length] == DIR_SEP)
                    687:         {
                    688:           used_sep = newName[length];
                    689:           check = TRUE;
                    690:           while (check)
                    691:             {
1.50      cvs       692:                length--;
                    693:                while (length >= 0 && newName[length] != used_sep)
1.53      cvs       694:                 length--;
                    695:                if (!strncmp (&newName[length+1], "..", 2))
                    696:                 {
                    697:                   newName[length+1] = EOS;
                    698:                   /* remove also previous directory */
                    699:                   length--;
                    700:                   while (length >= 0 && newName[length] != used_sep)
                    701:                     length--;
                    702:                   if (strncmp (&newName[length+1], "//", 2))
                    703:                     /* don't remove server name */
1.50      cvs       704:                      newName[length+1] = EOS;
1.53      cvs       705:                 }
                    706:               else if (!strncmp (&newName[length+1], ".", 1))
                    707:                 newName[length+1] = EOS;
1.50      cvs       708:                else
1.53      cvs       709:                 check = FALSE;
                    710:             }
                    711:           strcpy (docName, "noname.html");            
                    712:           /* docname was not comprised inside the URL, so let's */
                    713:           /* assign the default ressource name */
                    714:           strcpy (docName, "noname.html");
                    715:         }
                    716:        else
                    717:         { /* docname is comprised inside the URL */
1.50      cvs       718:            while (length >= 0 && newName[length] != URL_SEP && newName[length] != DIR_SEP)
1.53      cvs       719:             length--;
                    720:           if (length < 0)
1.50      cvs       721:              strcpy (docName, newName);
1.53      cvs       722:           else
                    723:             strcpy (docName, &newName[length+1]);
                    724:         }
                    725:      }
                    726:    else
                    727:      docName[0] = EOS;
1.18      cvs       728: } 
1.3       cvs       729: 
1.4       cvs       730: /*----------------------------------------------------------------------
1.9       cvs       731:   IsSameHost                                                         
1.4       cvs       732:   ----------------------------------------------------------------------*/
1.3       cvs       733: #ifdef __STDC__
1.34      cvs       734: boolean             IsSameHost (const char *url1, const char *url2)
1.3       cvs       735: #else  /* __STDC__ */
                    736: boolean             IsSameHost (url1, url2)
1.34      cvs       737: const char         *url1;
                    738: const char         *url2;
1.3       cvs       739: #endif /* __STDC__ */
                    740: {
1.34      cvs       741:    char            *basename_ptr1, *basename_ptr2;
                    742:    boolean          result;
1.3       cvs       743: 
1.25      cvs       744:    basename_ptr1 = AmayaParseUrl (url1, "", AMAYA_PARSE_ACCESS | AMAYA_PARSE_HOST | AMAYA_PARSE_PUNCTUATION);
                    745:    basename_ptr2 = AmayaParseUrl (url2, "", AMAYA_PARSE_ACCESS | AMAYA_PARSE_HOST | AMAYA_PARSE_PUNCTUATION);
1.3       cvs       746: 
1.5       cvs       747:    if (strcmp (basename_ptr1, basename_ptr2))
1.8       cvs       748:       result = FALSE;
1.5       cvs       749:    else
1.8       cvs       750:       result = TRUE;
1.3       cvs       751: 
1.25      cvs       752:    TtaFreeMemory (basename_ptr1);
                    753:    TtaFreeMemory (basename_ptr2);
1.5       cvs       754:    return (result);
1.3       cvs       755: }
                    756: 
                    757: 
1.4       cvs       758: /*----------------------------------------------------------------------
1.22      cvs       759:   HasKnownFileSuffix
                    760:   returns TRUE if path points to a file ending with a suffix.
                    761:   ----------------------------------------------------------------------*/
                    762: #ifdef __STDC__
1.34      cvs       763: boolean             HasKnownFileSuffix (const char *path)
1.22      cvs       764: #else  /* __STDC__ */
                    765: boolean             HasKnownFileSuffix (path)
1.34      cvs       766: const char         *path;
1.22      cvs       767: #endif /* __STDC__ */
                    768: {
1.29      cvs       769:    char            *root;
                    770:    char             temppath[MAX_LENGTH];
                    771:    char             suffix[MAX_LENGTH];
1.22      cvs       772: 
1.24      cvs       773:    if (!path || path[0] == EOS || path[strlen(path)] == DIR_SEP)
1.22      cvs       774:      return (FALSE);
                    775: 
1.29      cvs       776:    root = AmayaParseUrl(path, "", AMAYA_PARSE_PATH | AMAYA_PARSE_PUNCTUATION);
1.22      cvs       777: 
                    778:    if (root) 
                    779:      {
                    780:        strcpy (temppath, root);
1.25      cvs       781:        TtaFreeMemory (root);
1.22      cvs       782:        /* Get the suffix */
                    783:        ExtractSuffix (temppath, suffix); 
                    784: 
                    785:        if( suffix[0] == EOS)
                    786:         /* no suffix */
                    787:         return (FALSE);
                    788: 
                    789:        /* Normalize the suffix */
                    790:        ConvertToLowerCase (suffix);
                    791: 
1.23      cvs       792:        if (!strcmp (suffix, "gz"))
1.22      cvs       793:         /* skip the compressed suffix */
                    794:         {
                    795:         ExtractSuffix (temppath, suffix);
                    796:         if(suffix[0] == EOS)
                    797:           /* no suffix */
                    798:           return (FALSE);
                    799:          /* Normalize the suffix */
                    800:          ConvertToLowerCase (suffix);
                    801:         }
                    802: 
                    803:        if ((strcmp (suffix, "gif")) && (strcmp (suffix, "xbm")) &&
                    804:           (strcmp (suffix, "xpm")) && (strcmp (suffix, "jpg")) &&
                    805:           (strcmp (suffix, "pdf")) && (strcmp (suffix, "png")) &&
                    806:           (strcmp (suffix, "tgz")) && (strcmp (suffix, "xpg")) &&
                    807:           (strcmp (suffix, "xpd")) && (strcmp (suffix, "ps")) &&
                    808:           (strcmp (suffix, "au"))  && (strcmp (suffix, "html")) &&
                    809:           (strcmp (suffix, "htm")) && (strcmp (suffix, "shtml")) &&
                    810:           (strcmp (suffix, "txt")) && (strcmp (suffix, "css")) &&
                    811:           (strcmp (suffix, "eps")))
                    812:         return (FALSE);
                    813:        else
                    814:         return (TRUE);
                    815:      }
                    816:    else
                    817:      return (FALSE);
                    818: }
                    819: 
                    820: 
                    821: /*----------------------------------------------------------------------
1.24      cvs       822:   ChopURL
                    823:   Gives back a URL no longer than MAX_PRINT_URL_LENGTH chars (outputURL). 
                    824:   If inputURL is  bigger than that size, outputURL receives
                    825:   MAX_PRINT_URL_LENGTH / 2 chars from the beginning of inputURL, "...", 
                    826:   and MAX_PRINT_URL_LENGTH / 2 chars from the end of inputURL.
                    827:   If inputURL is not longer than MAX_PRINT_URL_LENGTH chars, it gets
                    828:   copied into outputURL. 
                    829:   N.B.: outputURL must point to a memory block of MAX_PRINT_URL_LENGTH
                    830:   chars.
                    831:   ----------------------------------------------------------------------*/
                    832: #ifdef __STDC__
1.34      cvs       833: void ChopURL (char *outputURL, const char *inputURL)
1.24      cvs       834: #else
                    835: void ChopURL (outputURL, inputURL)
1.34      cvs       836: char       *outputURL;
                    837: const char *inputURL;
1.24      cvs       838: #endif
1.22      cvs       839: 
1.24      cvs       840: {
                    841:   int len;
1.9       cvs       842: 
1.24      cvs       843:   len = strlen (inputURL);
                    844:   if (len <= MAX_PRINT_URL_LENGTH) 
1.29      cvs       845:     strcpy (outputURL, inputURL);
1.24      cvs       846:   else
                    847:     /* make a truncated urlName on the status window */
                    848:     {
                    849:       strncpy (outputURL, inputURL, MAX_PRINT_URL_LENGTH / 2);
                    850:       outputURL [MAX_PRINT_URL_LENGTH / 2] = EOS;
                    851:       strcat (outputURL, "...");
                    852:       strcat (outputURL, &(inputURL[len - MAX_PRINT_URL_LENGTH / 2 ]));
                    853:     }
1.25      cvs       854: }
                    855: 
                    856: 
                    857: /*----------------------------------------------------------------------
                    858:    scan
1.47      cvs       859:        Scan a filename for its constituents
1.25      cvs       860:        -----------------------------------
                    861:   
                    862:    On entry,
                    863:        name    points to a document name which may be incomplete.
                    864:    On exit,
                    865:         absolute or relative may be nonzero (but not both).
                    866:        host, fragment and access may be nonzero if they were specified.
                    867:        Any which are nonzero point to zero terminated strings.
                    868:   ----------------------------------------------------------------------*/
                    869: #ifdef __STDC__
                    870: static void scan (char * name, HTURI * parts)
                    871: #else  /* __STDC__ */
                    872: static void scan (name, parts)
                    873: char                *name;
                    874: HTURI               *parts;
                    875: 
                    876: #endif /* __STDC__ */
                    877: {
1.43      cvs       878:   char      *p;
                    879:   char      *after_access = name;
1.32      cvs       880: 
1.43      cvs       881:   memset (parts, '\0', sizeof (HTURI));
1.28      cvs       882:   /* Look for fragment identifier */
1.52      cvs       883:   if ((p = strchr(name, '#')) != NULL)
1.28      cvs       884:     {
                    885:       *p++ = '\0';
                    886:       parts->fragment = p;
1.25      cvs       887:     }
                    888:     
1.28      cvs       889:   for (p=name; *p; p++)
                    890:     {
1.43      cvs       891:       if (*p == URL_SEP || *p == DIR_SEP || *p=='#' || *p=='?')
1.28      cvs       892:        break;
1.32      cvs       893:       if (*p==':')
1.28      cvs       894:        {
                    895:          *p = 0;
                    896:          parts->access = after_access; /* Scheme has been specified */
                    897: 
                    898:          /* The combination of gcc, the "-O" flag and the HP platform is
                    899:             unhealthy. The following three lines is a quick & dirty fix, but is
                    900:             not recommended. Rather, turn off "-O". */
                    901: 
                    902:          /*            after_access = p;*/
                    903:          /*            while (*after_access == 0)*/
                    904:          /*                after_access++;*/
                    905:          after_access = p+1;
1.43      cvs       906:          if (!strcasecmp("URL", parts->access))
1.28      cvs       907:            /* Ignore IETF's URL: pre-prefix */
                    908:            parts->access = NULL;
                    909:          else
1.25      cvs       910:            break;
                    911:        }
                    912:     }
                    913:     
                    914:     p = after_access;
1.43      cvs       915:     if (*p == URL_SEP || *p == DIR_SEP)
1.28      cvs       916:       {
1.43      cvs       917:        if (p[1] == URL_SEP)
1.28      cvs       918:          {
1.25      cvs       919:            parts->host = p+2;          /* host has been specified      */
1.28      cvs       920:            *p = 0;                     /* Terminate access             */
                    921:            /* look for end of host name if any */
1.43      cvs       922:            p = strchr (parts->host, URL_SEP);
1.28      cvs       923:            if (p)
                    924:              {
1.43      cvs       925:                *p = EOS;                       /* Terminate host */
1.25      cvs       926:                parts->absolute = p+1;          /* Root has been found */
1.28      cvs       927:              }
                    928:          }
                    929:        else
                    930:          /* Root found but no host */
                    931:          parts->absolute = p+1;
                    932:       }
                    933:     else
                    934:       {
1.25      cvs       935:         parts->relative = (*after_access) ? after_access : 0; /* zero for "" */
1.28      cvs       936:       }
1.25      cvs       937: }
                    938: 
                    939: 
                    940: /*----------------------------------------------------------------------
1.28      cvs       941:   AmayaParseUrl: parse a Name relative to another name
                    942: 
                    943:   This returns those parts of a name which are given (and requested)
                    944:   substituting bits from the related name where necessary.
1.25      cvs       945:   
1.28      cvs       946:   On entry,
1.25      cvs       947:        aName           A filename given
                    948:         relatedName     A name relative to which aName is to be parsed. Give
                    949:                         it an empty string if aName is absolute.
                    950:         wanted          A mask for the bits which are wanted.
                    951:   
1.28      cvs       952:   On exit,
1.25      cvs       953:        returns         A pointer to a malloc'd string which MUST BE FREED
                    954:   ----------------------------------------------------------------------*/
                    955: #ifdef __STDC__
1.34      cvs       956: char          *AmayaParseUrl (const char *aName, char *relatedName, int wanted)
1.25      cvs       957: #else  /* __STDC__ */
1.28      cvs       958: char          *AmayaParseUrl (aName, relatedName, wanted)
1.34      cvs       959: const char    *aName;
1.28      cvs       960: char          *relatedName;
                    961: int            wanted;
1.25      cvs       962: 
                    963: #endif /* __STDC__ */
                    964: {
1.29      cvs       965:   char      *return_value;
                    966:   char       result[MAX_LENGTH];
                    967:   char       name[MAX_LENGTH];
                    968:   char       rel[MAX_LENGTH];
                    969:   char      *p, *access;
                    970:   HTURI      given, related;
                    971:   int        len;
1.33      cvs       972:   char       used_sep;
                    973:   char      *used_str;
1.32      cvs       974: 
1.43      cvs       975:   if (strchr (aName, DIR_SEP) || strchr (relatedName, DIR_SEP))
1.33      cvs       976:     {
1.42      cvs       977:       used_str = DIR_STR;
                    978:       used_sep = DIR_SEP;
1.33      cvs       979:     }
1.32      cvs       980:   else
1.33      cvs       981:     {
1.42      cvs       982:       used_str = URL_STR;
                    983:       used_sep = URL_SEP;
1.33      cvs       984:     }
1.32      cvs       985: 
1.29      cvs       986:   /* Make working copies of input strings to cut up: */
                    987:   return_value = NULL;
                    988:   result[0] = 0;               /* Clear string  */
                    989:   strcpy (name, aName);
                    990:   if (relatedName != NULL)  
                    991:     strcpy (rel, relatedName);
                    992:   else
                    993:     relatedName[0] = EOS;
                    994:   
                    995:   scan (name, &given);
                    996:   scan (rel,  &related); 
                    997:   access = given.access ? given.access : related.access;
                    998:   if (wanted & AMAYA_PARSE_ACCESS)
                    999:     if (access)
                   1000:       {
                   1001:        strcat (result, access);
                   1002:        if(wanted & AMAYA_PARSE_PUNCTUATION)
1.32      cvs      1003:                strcat (result, ":");
1.29      cvs      1004:       }
                   1005:   
                   1006:   if (given.access && related.access)
                   1007:     /* If different, inherit nothing. */
                   1008:     if (strcmp (given.access, related.access) != 0)
                   1009:       {
                   1010:        related.host = 0;
                   1011:        related.absolute = 0;
                   1012:        related.relative = 0;
                   1013:        related.fragment = 0;
                   1014:       }
                   1015:   
                   1016:   if (wanted & AMAYA_PARSE_HOST)
                   1017:     if(given.host || related.host)
                   1018:       {
                   1019:        if(wanted & AMAYA_PARSE_PUNCTUATION)
                   1020:          strcat (result, "//");
                   1021:        strcat (result, given.host ? given.host : related.host);
                   1022:       }
                   1023:   
                   1024:   if (given.host && related.host)
                   1025:     /* If different hosts, inherit no path. */
                   1026:     if (strcmp(given.host, related.host) != 0)
                   1027:       {
                   1028:        related.absolute = 0;
                   1029:        related.relative = 0;
                   1030:        related.fragment = 0;
                   1031:       }
                   1032:   
                   1033:   if (wanted & AMAYA_PARSE_PATH)
                   1034:     {
                   1035:       if (given.absolute)
                   1036:        {
                   1037:          /* All is given */
                   1038:          if (wanted & AMAYA_PARSE_PUNCTUATION)
1.33      cvs      1039:            strcat (result, used_str);
1.29      cvs      1040:          strcat (result, given.absolute);
1.25      cvs      1041:        }
1.29      cvs      1042:       else if (related.absolute)
                   1043:        {
                   1044:          /* Adopt path not name */
1.33      cvs      1045:          strcat (result, used_str);
1.29      cvs      1046:          strcat (result, related.absolute);
                   1047:          if (given.relative)
                   1048:            {
                   1049:              /* Search part? */
                   1050:              p = strchr (result, '?');
                   1051:              if (!p)
                   1052:                p=result+strlen(result)-1;
1.33      cvs      1053:              for (; *p!=used_sep; p--);        /* last / */
1.29      cvs      1054:              /* Remove filename */
                   1055:              p[1]=0;
                   1056:              /* Add given one */
                   1057:              strcat (result, given.relative);
1.25      cvs      1058:            }
                   1059:        }
1.29      cvs      1060:       else if (given.relative)
                   1061:        /* what we've got */
                   1062:        strcat (result, given.relative);
                   1063:       else if (related.relative)
                   1064:        strcat (result, related.relative);
                   1065:       else
                   1066:        /* No inheritance */
1.33      cvs      1067:        strcat (result, used_str);
1.25      cvs      1068:     }
1.29      cvs      1069:   
                   1070:   if (wanted & AMAYA_PARSE_ANCHOR)
                   1071:     if (given.fragment || related.fragment)
                   1072:       {
                   1073:        if (given.absolute && given.fragment)
                   1074:          {
                   1075:            /*Fixes for relURLs...*/
                   1076:            if (wanted & AMAYA_PARSE_PUNCTUATION)
                   1077:              strcat (result, "#");
                   1078:            strcat (result, given.fragment); 
                   1079:          }
                   1080:        else if (!(given.absolute) && !(given.fragment))
                   1081:          strcat (result, "");
                   1082:        else
                   1083:          {
                   1084:            if (wanted & AMAYA_PARSE_PUNCTUATION)
                   1085:              strcat (result, "#");
                   1086:            strcat (result, given.fragment ? given.fragment : related.fragment); 
                   1087:          }
                   1088:       }
                   1089:   len = strlen (result);
                   1090:   if ((return_value = (char *) TtaGetMemory (len + 1)) != NULL)
                   1091:     strcpy (return_value, result);
                   1092:   return (return_value);               /* exactly the right length */
1.25      cvs      1093: }
                   1094: 
                   1095: /*----------------------------------------------------------------------
                   1096:      HTCanon
                   1097:        Canonicalizes the URL in the following manner starting from the host
                   1098:        pointer:
                   1099:   
                   1100:        1) The host name is converted to lowercase
                   1101:        2) Chop off port if `:80' (http), `:70' (gopher), or `:21' (ftp)
                   1102:   
                   1103:        Return: OK      The position of the current path part of the URL
                   1104:                        which might be the old one or a new one.
                   1105:   
                   1106:   ----------------------------------------------------------------------*/
                   1107: #ifdef __STDC__
1.28      cvs      1108: static char *HTCanon (char ** filename, char * host)
1.25      cvs      1109: #else  /* __STDC__ */
1.28      cvs      1110: static char *HTCanon (filename, host)
                   1111: char       **filename;
                   1112: char        *host;
1.25      cvs      1113: #endif /* __STDC__ */
                   1114: {
                   1115:     char *newname = NULL;
                   1116:     char *port;
                   1117:     char *strptr;
                   1118:     char *path;
                   1119:     char *access = host-3;
1.33      cvs      1120:     char       used_sep;
1.32      cvs      1121: 
                   1122:   
1.33      cvs      1123:      if (*filename && strchr (*filename, URL_SEP))
                   1124:        {
                   1125:         used_sep = URL_SEP;
                   1126:        }
                   1127:      else
                   1128:        {
                   1129:         used_sep = DIR_SEP;
                   1130:        }
1.32      cvs      1131:   
1.33      cvs      1132:     while (access>*filename && *(access-1)!= used_sep)       /* Find access method */
1.25      cvs      1133:        access--;
1.33      cvs      1134:     if ((path = strchr(host, used_sep)) == NULL)                       /* Find path */
1.25      cvs      1135:        path = host + strlen(host);
                   1136:     if ((strptr = strchr(host, '@')) != NULL && strptr<path)      /* UserId */
                   1137:        host = strptr;
1.32      cvs      1138:     if ((port = strchr(host, ':')) != NULL && port>path)      /* Port number */
1.25      cvs      1139:        port = NULL;
                   1140: 
                   1141:     strptr = host;                                 /* Convert to lower-case */
1.33      cvs      1142:     while (strptr<path)
                   1143:       {
1.25      cvs      1144:        *strptr = tolower(*strptr);
                   1145:        strptr++;
1.33      cvs      1146:       }
1.25      cvs      1147:     
                   1148:     /* Does the URL contain a full domain name? This also works for a
                   1149:        numerical host name. The domain name is already made lower-case
                   1150:        and without a trailing dot. */
                   1151:     {
1.33      cvs      1152:       char *dot = port ? port : path;
                   1153:       if (dot > *filename && *--dot=='.')
                   1154:        {
                   1155:          char *orig=dot, *dest=dot+1;
                   1156:          while((*orig++ = *dest++));
                   1157:          if (port) port--;
                   1158:          path--;
1.25      cvs      1159:        }
                   1160:     }
                   1161:     /* Chop off port if `:', `:80' (http), `:70' (gopher), or `:21' (ftp) */
1.33      cvs      1162:     if (port)
                   1163:       {
                   1164:        if (!*(port+1) || *(port+1)==used_sep)
                   1165:          {
                   1166:            if (!newname)
                   1167:              {
1.25      cvs      1168:                char *orig=port, *dest=port+1;
                   1169:                while((*orig++ = *dest++));
1.33      cvs      1170:              }
                   1171:          }
                   1172:        else if ((!strncmp(access, "http", 4) &&
                   1173:                  (*(port+1)=='8'&&*(port+2)=='0'&&(*(port+3)==used_sep||!*(port+3)))) ||
                   1174:                 (!strncmp(access, "gopher", 6) &&
                   1175:                  (*(port+1)=='7'&&*(port+2)=='0'&&(*(port+3)==used_sep||!*(port+3)))) ||
                   1176:                 (!strncmp(access, "ftp", 3) &&
                   1177:                  (*(port+1)=='2'&&*(port+2)=='1'&&(*(port+3)==used_sep||!*(port+3))))) {
                   1178:          if (!newname)
                   1179:            {
                   1180:              char *orig=port, *dest=port+3;
                   1181:              while((*orig++ = *dest++));
                   1182:              /* Update path position, Henry Minsky */
                   1183:              path -= 3;
1.25      cvs      1184:            }
1.33      cvs      1185:        }
                   1186:        else if (newname)
                   1187:          strncat(newname, port, (int) (path-port));
                   1188:       }
1.25      cvs      1189: 
1.33      cvs      1190:     if (newname)
                   1191:       {
1.25      cvs      1192:        char *newpath = newname+strlen(newname);
                   1193:        strcat(newname, path);
                   1194:        path = newpath;
1.28      cvs      1195:        /* Free old copy */
                   1196:        TtaFreeMemory(*filename);
1.25      cvs      1197:        *filename = newname;
1.33      cvs      1198:       }
1.25      cvs      1199:     return path;
                   1200: }
                   1201: 
                   1202: 
                   1203: /*----------------------------------------------------------------------
1.29      cvs      1204:   SimplifyUrl: simplify a URI
1.32      cvs      1205:   A URI is allowed to contain the sequence xxx/../ which may be
                   1206:   replaced by "" , and the sequence "/./" which may be replaced by DIR_STR.
1.28      cvs      1207:   Simplification helps us recognize duplicate URIs. 
1.25      cvs      1208:   
1.28      cvs      1209:   Thus,        /etc/junk/../fred       becomes /etc/fred
                   1210:                 /etc/junk/./fred       becomes /etc/junk/fred
1.25      cvs      1211:   
1.28      cvs      1212:   but we should NOT change
                   1213:                 http://fred.xxx.edu/../..
1.25      cvs      1214:   
                   1215:        or      ../../albert.html
                   1216:   
1.28      cvs      1217:   In order to avoid empty URLs the following URLs become:
1.25      cvs      1218:   
                   1219:                /fred/..                becomes /fred/..
                   1220:                /fred/././..            becomes /fred/..
                   1221:                /fred/.././junk/.././   becomes /fred/..
                   1222:   
1.28      cvs      1223:   If more than one set of `://' is found (several proxies in cascade) then
                   1224:   only the part after the last `://' is simplified.
1.25      cvs      1225:   
1.28      cvs      1226:   Returns: A string which might be the old one or a new one.
1.25      cvs      1227:   ----------------------------------------------------------------------*/
                   1228: #ifdef __STDC__
1.29      cvs      1229: void         SimplifyUrl (char ** url)
1.25      cvs      1230: #else  /* __STDC__ */
1.29      cvs      1231: void         SimplifyUrl (url)
1.28      cvs      1232: char        **url;
1.25      cvs      1233: #endif /* __STDC__ */
                   1234: {
1.28      cvs      1235:   char *path, *p;
                   1236:   char *newptr, *access;
                   1237:   char *orig, *dest, *end;
                   1238: 
1.33      cvs      1239:   char       used_sep;
1.32      cvs      1240: 
                   1241: 
1.28      cvs      1242:   if (!url || !*url)
                   1243:     return;
                   1244: 
1.33      cvs      1245:   if (strchr (*url, URL_SEP))
                   1246:     {
                   1247:       used_sep = URL_SEP;
                   1248:     }
1.32      cvs      1249:   else
1.33      cvs      1250:     {
                   1251:       used_sep = DIR_SEP;
                   1252:     }
1.32      cvs      1253: 
1.28      cvs      1254:   /* Find any scheme name */
                   1255:   if ((path = strstr(*url, "://")) != NULL)
1.33      cvs      1256:     {
                   1257:       /* Find host name */
1.28      cvs      1258:       access = *url;
                   1259:       while (access<path && (*access=tolower(*access)))
                   1260:        access++;
                   1261:       path += 3;
                   1262:       while ((newptr = strstr(path, "://")) != NULL)
                   1263:         /* For proxies */
                   1264:        path = newptr+3;
                   1265:       /* We have a host name */
                   1266:       path = HTCanon(url, path);
1.25      cvs      1267:     }
1.28      cvs      1268:   else if ((path = strstr(*url, ":/")) != NULL)
                   1269:     path += 2;
                   1270:   else
                   1271:     path = *url;
1.25      cvs      1272: 
1.33      cvs      1273:   if (*path == used_sep && *(path+1)==used_sep)
1.28      cvs      1274:     /* Some URLs start //<foo> */
                   1275:     path += 1;
                   1276:   else if (!strncmp(path, "news:", 5))
                   1277:     {
                   1278:       newptr = strchr(path+5, '@');
                   1279:       if (!newptr)
                   1280:        newptr = path + 5;
                   1281:       while (*newptr)
                   1282:        {
                   1283:          /* Make group or host lower case */
                   1284:          *newptr = tolower (*newptr);
                   1285:          newptr++;
1.25      cvs      1286:        }
1.28      cvs      1287:       /* Doesn't need to do any more */
                   1288:       return;
1.25      cvs      1289:     }
1.28      cvs      1290: 
                   1291:   if ((p = path))
                   1292:     {
                   1293:       if (!((end = strchr (path, ';')) || (end = strchr (path, '?')) ||
                   1294:            (end = strchr (path, '#'))))
                   1295:        end = path + strlen (path);
                   1296:       
                   1297:       /* Parse string second time to simplify */
                   1298:       p = path;
                   1299:       while (p < end)
                   1300:        {
1.33      cvs      1301:          if (*p==used_sep)
1.28      cvs      1302:            {
1.33      cvs      1303:              if (p > *url && *(p+1) == '.' && (*(p+2) == used_sep || !*(p+2)))
1.28      cvs      1304:                {
                   1305:                  orig = p + 1;
1.33      cvs      1306:                  dest = (*(p+2)!=used_sep) ? p+2 : p+3;
1.52      cvs      1307:                  while ((*orig++ = *dest++)); /* Remove a used_sep and a dot*/
1.28      cvs      1308:                  end = orig - 1;
                   1309:                }
1.33      cvs      1310:              else if (*(p+1)=='.' && *(p+2)=='.' && (*(p+3)==used_sep || !*(p+3)))
1.28      cvs      1311:                {
                   1312:                  newptr = p;
1.52      cvs      1313:                  while (newptr>path && *--newptr!=used_sep); /* prev used_sep */
                   1314:                  if (*newptr == used_sep)
                   1315:                    orig = newptr + 1;
1.28      cvs      1316:                  else
1.52      cvs      1317:                    orig = newptr;
                   1318: 
                   1319:                  dest = (*(p+3) != used_sep) ? p+3 : p+4;
                   1320:                  while ((*orig++ = *dest++)); /* Remove /xxx/.. */
                   1321:                  end = orig-1;
                   1322:                  /* Start again with prev slash */
                   1323:                  p = newptr;
1.28      cvs      1324:                }
1.33      cvs      1325:              else if (*(p+1) == used_sep)
1.28      cvs      1326:                {
1.33      cvs      1327:                  while (*(p+1) == used_sep)
1.28      cvs      1328:                    {
                   1329:                      orig = p;
                   1330:                      dest = p + 1;
                   1331:                      while ((*orig++ = *dest++));  /* Remove multiple /'s */
                   1332:                      end = orig-1;
                   1333:                    }
                   1334:                }
                   1335:              else
1.25      cvs      1336:                p++;
1.28      cvs      1337:            }
                   1338:          else
                   1339:            p++;
1.25      cvs      1340:        }
                   1341:     }
1.51      cvs      1342: 
                   1343:     /*
                   1344:     **  Check for host/../.. kind of things
                   1345:     */
1.52      cvs      1346:     if (*path==used_sep && *(path+1)=='.' && *(path+2)=='.' && (!*(path+3) || *(path+3)==used_sep))
1.51      cvs      1347:        *(path+1) = EOS;
                   1348: 
1.28      cvs      1349:   return;
                   1350: }
                   1351: 
                   1352: 
                   1353: /*----------------------------------------------------------------------
                   1354:    NormalizeFile normalizes  local names.                             
                   1355:    Return TRUE if target and src differ.                           
                   1356:   ----------------------------------------------------------------------*/
                   1357: #ifdef __STDC__
                   1358: boolean             NormalizeFile (char *src, char *target)
                   1359: #else
                   1360: boolean             NormalizeFile (src, target)
                   1361: char               *src;
                   1362: char               *target;
                   1363: 
                   1364: #endif
                   1365: {
                   1366:    char               *s;
                   1367:    boolean             change;
                   1368: 
1.54      cvs      1369:    change = FALSE;
1.53      cvs      1370:    if (strncmp (src, "file:", 5) == 0)
1.28      cvs      1371:      {
                   1372:        /* remove the prefix file: */
                   1373:        if (src[5] == EOS)
                   1374:           strcpy (target, DIR_STR);
                   1375:        else if (src[0] == '~')
                   1376:          {
                   1377:            /* replace ~ */
                   1378:            s = (char *) TtaGetEnvString ("HOME");
                   1379:            strcpy (target, s);
                   1380:            strcat (target, &src[5]);
                   1381:          }
                   1382:        else
                   1383:           strcpy (target, &src[5]);
1.54      cvs      1384:        change = TRUE;
1.28      cvs      1385:      }
1.53      cvs      1386: #  ifndef _WINDOWS
                   1387:    else if (src[0] == '~')
                   1388:      {
                   1389:        /* replace ~ */
                   1390:        s = (char *) TtaGetEnvString ("HOME");
                   1391:        strcpy (target, s);
                   1392:        if (src[1] != DIR_SEP)
                   1393:          strcat (target, DIR_STR);
                   1394:        strcat (target, &src[1]);
1.54      cvs      1395:        change = TRUE;
1.53      cvs      1396:      }
                   1397: #   endif /* _WINDOWS */
1.28      cvs      1398:    else
                   1399:       strcpy (target, src);
                   1400: 
                   1401:    /* remove /../ and /./ */
1.29      cvs      1402:    SimplifyUrl (&target);
1.54      cvs      1403:    if (!change)
                   1404:      change = strcmp (src, target);
1.28      cvs      1405:    return (change);
1.25      cvs      1406: }
                   1407: 
1.28      cvs      1408: 
1.25      cvs      1409: /*----------------------------------------------------------------------
1.31      cvs      1410:   MakeRelativeURL: make relative name
1.25      cvs      1411:   
1.28      cvs      1412:   This function creates and returns a string which gives an expression of
                   1413:   one address as related to another. Where there is no relation, an absolute
                   1414:   address is retured.
1.25      cvs      1415:   
1.28      cvs      1416:   On entry,
1.25      cvs      1417:        Both names must be absolute, fully qualified names of nodes
                   1418:        (no fragment bits)
                   1419:   
1.28      cvs      1420:   On exit,
1.25      cvs      1421:        The return result points to a newly allocated name which, if
                   1422:        parsed by AmayaParseUrl relative to relatedName, will yield aName.
                   1423:        The caller is responsible for freeing the resulting name later.
                   1424:   ----------------------------------------------------------------------*/
                   1425: #ifdef __STDC__
1.31      cvs      1426: char            *MakeRelativeURL (char *aName, char *relatedName)
1.25      cvs      1427: #else  /* __STDC__ */
1.31      cvs      1428: char            *MakeRelativeURL (aName, relatedName)
1.28      cvs      1429: char            *aName;
                   1430: char            *relatedName;
1.25      cvs      1431: #endif  /* __STDC__ */
                   1432: {
1.39      cvs      1433:   char          *return_value;
                   1434:   char           result[MAX_LENGTH];
1.29      cvs      1435:   char          *p;
1.34      cvs      1436:   char          *q;
1.29      cvs      1437:   char          *after_access;
                   1438:   char          *last_slash = NULL;
                   1439:   int            slashes, levels, len;
                   1440: 
1.44      cvs      1441: # ifdef _WINDOWS
                   1442:   int ndx;
                   1443: # endif /* _WINDOWS */
                   1444: 
1.29      cvs      1445:   if (aName == NULL || relatedName == NULL)
                   1446:     return (NULL);
                   1447: 
                   1448:   slashes = 0;
                   1449:   after_access = NULL;
                   1450:   p = aName;
                   1451:   q = relatedName;
                   1452:   for (; *p && (*p == *q); p++, q++)
1.27      cvs      1453:     {
                   1454:       /* Find extent of match */
1.32      cvs      1455:       if (*p == ':')
1.29      cvs      1456:        after_access = p + 1;
1.28      cvs      1457:       if (*p == DIR_SEP)
1.27      cvs      1458:        {
1.29      cvs      1459:          /* memorize the last slash position and count them */
1.27      cvs      1460:          last_slash = p;
                   1461:          slashes++;
1.25      cvs      1462:        }
                   1463:     }
                   1464:     
1.31      cvs      1465:   /* q, p point to the first non-matching character or zero */
                   1466:   if (*q == EOS)
                   1467:     {
                   1468:       /* New name is a subset of the related name */
                   1469:       /* exactly the right length */
                   1470:       len = strlen (p);
                   1471:       if ((return_value = (char *) TtaGetMemory (len + 1)) != NULL)
                   1472:        strcpy (return_value, p);
                   1473:     }
                   1474:   else if ((slashes < 2 && after_access == NULL)
                   1475:       || (slashes < 3 && after_access != NULL))
                   1476:     {
                   1477:       /* Two names whitout common path */
                   1478:       /* exactly the right length */
                   1479:       len = strlen (aName);
                   1480:       if ((return_value = (char *) TtaGetMemory (len + 1)) != NULL)
                   1481:        strcpy (return_value, aName);
                   1482:     }
                   1483:   else
                   1484:     {
                   1485:       /* Some path in common */
                   1486:       if (slashes == 3 && strncmp (aName, "http:", 5) == 0)
                   1487:        /* just the same server */
                   1488:        strcpy (result, last_slash);
                   1489:       else
                   1490:        {
                   1491:          levels= 0; 
1.52      cvs      1492:          for (; *q && *q != '#' && *q!=';' && *q!='?'; q++)
1.31      cvs      1493:            if (*q == DIR_SEP)
                   1494:              levels++;
                   1495:          
1.52      cvs      1496:          result[0] = EOS;
1.31      cvs      1497:          for (;levels; levels--)
                   1498:            strcat (result, "../");
                   1499:          strcat (result, last_slash+1);
                   1500:        } 
1.52      cvs      1501: 
                   1502:       if (!*result)
                   1503:        strcat (result, "./");
                   1504: 
1.31      cvs      1505:       /* exactly the right length */
                   1506:       len = strlen (result);
                   1507:       if ((return_value = (char *) TtaGetMemory (len + 1)) != NULL)
                   1508:        strcpy (return_value, result);
1.52      cvs      1509: 
1.25      cvs      1510:     }
1.44      cvs      1511: # ifdef _WINDOWS
                   1512:   len = strlen (return_value);
                   1513:   for (ndx = 0; ndx < len; ndx ++)
                   1514:          if (return_value[ndx] == '\\')
                   1515:             return_value[ndx] = '/' ;
                   1516: # endif /* _WINDOWS */
1.29      cvs      1517:   return (return_value);
1.24      cvs      1518: }
1.35      cvs      1519: 
                   1520: 

Webmaster