⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mod_speling.c

📁 apache 安装教程 apache 安装教程
💻 C
📖 第 1 页 / 共 2 页
字号:
    }    while ((dir_entry = readdir(dirp)) != NULL) {        sp_reason q;        /*         * If we end up with a "fixed" URL which is identical to the         * requested one, we must have found a broken symlink or some such.         * Do _not_ try to redirect this, it causes a loop!         */        if (strcmp(bad, dir_entry->d_name) == 0) {            ap_pclosedir(r->pool, dirp);            return OK;        }        /*         * miscapitalization errors are checked first (like, e.g., lower case         * file, upper case request)         */        else if (strcasecmp(bad, dir_entry->d_name) == 0) {            misspelled_file *sp_new;	    sp_new = (misspelled_file *) ap_push_array(candidates);            sp_new->name = ap_pstrdup(r->pool, dir_entry->d_name);            sp_new->quality = SP_MISCAPITALIZED;        }        /*         * simple typing errors are checked next (like, e.g.,         * missing/extra/transposed char)         */        else if ((q = spdist(bad, dir_entry->d_name)) != SP_VERYDIFFERENT) {            misspelled_file *sp_new;	    sp_new = (misspelled_file *) ap_push_array(candidates);            sp_new->name = ap_pstrdup(r->pool, dir_entry->d_name);            sp_new->quality = q;        }        /*	 * The spdist() should have found the majority of the misspelled	 * requests.  It is of questionable use to continue looking for	 * files with the same base name, but potentially of totally wrong	 * type (index.html <-> index.db).	 * I would propose to not set the WANT_BASENAME_MATCH define.         *      08-Aug-1997 <Martin.Kraemer@Mch.SNI.De>         *         * However, Alexei replied giving some reasons to add it anyway:         * > Oh, by the way, I remembered why having the         * > extension-stripping-and-matching stuff is a good idea:         * >         * > If you're using MultiViews, and have a file named foobar.html,	 * > which you refer to as "foobar", and someone tried to access	 * > "Foobar", mod_speling won't find it, because it won't find	 * > anything matching that spelling. With the extension-munging,	 * > it would locate "foobar.html". Not perfect, but I ran into	 * > that problem when I first wrote the module.	 */        else {#ifdef WANT_BASENAME_MATCH            /*             * Okay... we didn't find anything. Now we take out the hard-core             * power tools. There are several cases here. Someone might have             * entered a wrong extension (.htm instead of .html or vice             * versa) or the document could be negotiated. At any rate, now             * we just compare stuff before the first dot. If it matches, we             * figure we got us a match. This can result in wrong things if             * there are files of different content types but the same prefix             * (e.g. foo.gif and foo.html) This code will pick the first one             * it finds. Better than a Not Found, though.             */            int entloc = ap_ind(dir_entry->d_name, '.');            if (entloc == -1) {                entloc = strlen(dir_entry->d_name);	    }            if ((dotloc == entloc)                && !strncasecmp(bad, dir_entry->d_name, dotloc)) {                misspelled_file *sp_new;		sp_new = (misspelled_file *) ap_push_array(candidates);                sp_new->name = ap_pstrdup(r->pool, dir_entry->d_name);                sp_new->quality = SP_VERYDIFFERENT;            }#endif        }    }    ap_pclosedir(r->pool, dirp);    if (candidates->nelts != 0) {        /* Wow... we found us a mispelling. Construct a fixed url */        char *nuri;	const char *ref;        misspelled_file *variant = (misspelled_file *) candidates->elts;        int i;        ref = ap_table_get(r->headers_in, "Referer");        qsort((void *) candidates->elts, candidates->nelts,              sizeof(misspelled_file), sort_by_quality);        /*         * Conditions for immediate redirection:          *     a) the first candidate was not found by stripping the suffix          * AND b) there exists only one candidate OR the best match is not	 *        ambiguous         * then return a redirection right away.         */        if (variant[0].quality != SP_VERYDIFFERENT	    && (candidates->nelts == 1		|| variant[0].quality != variant[1].quality)) {            nuri = ap_escape_uri(r->pool, ap_pstrcat(r->pool, url,						     variant[0].name,						     r->path_info, NULL));	    if (r->parsed_uri.query)		nuri = ap_pstrcat(r->pool, nuri, "?", r->parsed_uri.query, NULL);            ap_table_setn(r->headers_out, "Location",			  ap_construct_url(r->pool, nuri, r));            ap_log_rerror(APLOG_MARK, APLOG_NOERRNO | APLOG_INFO, r,			 ref ? "Fixed spelling: %s to %s from %s"			     : "Fixed spelling: %s to %s",			 r->uri, nuri, ref);            return HTTP_MOVED_PERMANENTLY;        }        /*         * Otherwise, a "[300] Multiple Choices" list with the variants is         * returned.         */        else {            pool *p;            table *notes;	    pool *sub_pool;	    array_header *t;	    array_header *v;            if (r->main == NULL) {                p = r->pool;                notes = r->notes;            }            else {                p = r->main->pool;                notes = r->main->notes;            }	    sub_pool = ap_make_sub_pool(p);	    t = ap_make_array(sub_pool, candidates->nelts * 8 + 8,			      sizeof(char *));	    v = ap_make_array(sub_pool, candidates->nelts * 5,			      sizeof(char *));            /* Generate the response text. */	    *(const char **)ap_push_array(t) =			  "The document name you requested (<code>";	    *(const char **)ap_push_array(t) = ap_escape_html(sub_pool, r->uri);	    *(const char **)ap_push_array(t) =			   "</code>) could not be found on this server.\n"			   "However, we found documents with names similar "			   "to the one you requested.<p>"			   "Available documents:\n<ul>\n";            for (i = 0; i < candidates->nelts; ++i) {		char *vuri;		const char *reason;		reason = sp_reason_str[(int) (variant[i].quality)];                /* The format isn't very neat... */		vuri = ap_pstrcat(sub_pool, url, variant[i].name, r->path_info,				  (r->parsed_uri.query != NULL) ? "?" : "",				  (r->parsed_uri.query != NULL)				      ? r->parsed_uri.query : "",				  NULL);		*(const char **)ap_push_array(v) = "\"";		*(const char **)ap_push_array(v) = ap_escape_uri(sub_pool, vuri);		*(const char **)ap_push_array(v) = "\";\"";		*(const char **)ap_push_array(v) = reason;		*(const char **)ap_push_array(v) = "\"";		*(const char **)ap_push_array(t) = "<li><a href=\"";		*(const char **)ap_push_array(t) = ap_escape_uri(sub_pool, vuri);		*(const char **)ap_push_array(t) = "\">";		*(const char **)ap_push_array(t) = ap_escape_html(sub_pool, vuri);		*(const char **)ap_push_array(t) = "</a> (";		*(const char **)ap_push_array(t) = reason;		*(const char **)ap_push_array(t) = ")\n";                /*                 * when we have printed the "close matches" and there are                 * more "distant matches" (matched by stripping the suffix),                 * then we insert an additional separator text to suggest                 * that the user LOOK CLOSELY whether these are really the                 * files she wanted.                 */                if (i > 0 && i < candidates->nelts - 1                    && variant[i].quality != SP_VERYDIFFERENT                    && variant[i + 1].quality == SP_VERYDIFFERENT) {		    *(const char **)ap_push_array(t) = 				   "</ul>\nFurthermore, the following related "				   "documents were found:\n<ul>\n";                }            }	    *(const char **)ap_push_array(t) = "</ul>\n";            /* If we know there was a referring page, add a note: */            if (ref != NULL) {                *(const char **)ap_push_array(t) =			       "Please consider informing the owner of the "			       "<a href=\"";		*(const char **)ap_push_array(t) = ap_escape_uri(sub_pool, ref);                *(const char **)ap_push_array(t) = "\">referring page</a> "			       "about the broken link.\n";	    }            /* Pass our table to http_protocol.c (see mod_negotiation): */            ap_table_setn(notes, "variant-list", ap_array_pstrcat(p, t, 0));	    ap_table_mergen(r->subprocess_env, "VARIANTS",			    ap_array_pstrcat(p, v, ','));	  	    ap_destroy_pool(sub_pool);            ap_log_rerror(APLOG_MARK, APLOG_NOERRNO | APLOG_INFO, r,			 ref ? "Spelling fix: %s: %d candidates from %s"			     : "Spelling fix: %s: %d candidates",			 r->uri, candidates->nelts, ref);            return HTTP_MULTIPLE_CHOICES;        }    }    return OK;}module MODULE_VAR_EXPORT speling_module ={    STANDARD_MODULE_STUFF,    NULL,                       /* initializer */    create_mconfig_for_directory,  /* create per-dir config */    NULL,                       /* merge per-dir config */    create_mconfig_for_server,  /* server config */    NULL,                       /* merge server config */    speling_cmds,               /* command table */    NULL,                       /* handlers */    NULL,                       /* filename translation */    NULL,                       /* check_user_id */    NULL,                       /* check auth */    NULL,                       /* check access */    NULL,                       /* type_checker */    check_speling,              /* fixups */    NULL,                       /* logger */    NULL,                       /* header parser */    NULL,                       /* child_init */    NULL,                       /* child_exit */    NULL                        /* post read-request */};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -