我在一个共享的 linux 服务器上,我只能访问映射到 ~/public_html的http://domain.com/~username/ 。
在这种情况下,我想为 ColdFusion 使用 Taffy 框架。据我所知,要使用该框架,您必须有一个Application.cfc
扩展 Taffy 框架组件的框架taffy.core.api
。
https://github.com/atuttle/Taffy
https://github.com/atuttle/Taffy/wiki/Installing-Taffy
https://github.com/atuttle/Taffy/wiki/So-you-want-to:-Create-a-dead-simple-CRUD-API
我可以访问的唯一目录不是 Web 根目录的子目录,因此(据我所知)不是 ColdFusion 路径的子集。
在我的特殊情况下,我既无法访问 CFADMIN,服务器管理员也不会安装我需要在系统范围的上下文中扩展的组件,该组件已经在路径上并且可以通过全局点符号访问。
说明说您应该将 taffy 文件夹解压缩到您的 web 根目录中,如果您不能这样做,您应该将其设为您的 api 的子文件夹。前者对我来说是不可能的,当我做后者时,我得到“找不到 ColdFusion 组件或接口taffy.core.api
”。
更多细节:
我的 api 在http://domain.com/~username/api/
,所以我解压缩了/taffy to ~/public_html/api/
。如果我将 Taffy 示例复制到taffy/examples/api
to~/public_html/api
以便http://domain.com/~username/api/
访问该示例,我会得到“找不到 ColdFusion 组件或接口 taffy.core.api”,即使taffy/core/api.cfc
在该目录下 ( ~/public_html/api
) 也是如此。
在这台服务器上,我已经成功地制作了 cfc,它使用<cfset THIS.mappings["/subdir"]= getDirectoryFromPath(getCurrentTemplatePath()) & "subdir/">
and扩展了另一个目录中的 cfc <cfobject name="parentObj" component="subdir.parent">
。
我还成功地制作了一个扩展同一目录中的 cfc 的 Application.cfc 。
我只是没有成功地制作一个可以在另一个目录中扩展 cfc 的 Application.cfc,即使它是一个子目录。
我确实尝试使用 grep 和相关工具从 Taffy 的源代码中删除“taffy.core”的每个引用,这样我就可以将所有 taffy cfc 连同 Application.cfc 一起转储到我的根目录中,这样我就可以扩展 api.cfc,但我得到了不同的错误,并没有进一步追求那个骇人听闻的解决方案。
<cfdump var=#expandPath('/mapping')# />
输出/var/www/html/mapping
。
uname@domain $>ls -la /var/www/html
drwxr-xr-x 3 root root 4096 Sep 16 00:34 .
drwxr-xr-x 7 root root 4096 May 28 2012 ..
lrwxrwxrwx 1 root root 19 Sep 16 00:34 cfide -> /var/www/html/CFIDE
drwxrwxr-x 10 apache root 4096 Sep 16 00:32 CFIDE
~/public_html/api/resources/successesCollection.cfc
:
<cfcomponent extends="taffy.core.resource" taffy_uri="/successes">
<cffunction name="get" access="public" output="false">
<cfreturn representationOf('success').withStatus(200) />
</cffunction>
</cfcomponent>
~/public_html/api/Application.cfc
:
<cfcomponent extends="taffy.core.api">
<!--- doesn't work
<cfset THIS.mappings["/taffy"]= getDirectoryFromPath(getCurrentTemplatePath()) & "taffy/">
<cfset THIS.mappings["/core"]= getDirectoryFromPath(getCurrentTemplatePath()) & "taffy/core/">
--->
<cfscript>
this.name = hash(getCurrentTemplatePath());
// do your onApplicationStart stuff here
function applicationStartEvent(){}
// do your onRequestStart stuff here
function requestStartEvent(){}
// this function is called after the request has been parsed and all request details are known
function onTaffyRequest(verb, cfc, requestArguments, mimeExt){
// this would be a good place for you to check API key validity and other non-resource-specific validation
return true;
}
// called when taffy is initializing or when a reload is requested
function configureTaffy(){
setDebugKey("debug");
setReloadKey("reload");
setReloadPassword("true");
// Usage of this function is entirely optional. You may omit it if you want to use the default representation class.
// Change this to a custom class to change the default for the entire API instead of overriding for every individual response.
setDefaultRepresentationClass("taffy.core.genericRepresentation");
}
</cfscript>
</cfcomponent>
输出http://domain.com/~uname/api/index.cfm/successes/
:Could not find the ColdFusion Component or Interface taffy.core.api.
将此添加到我的Application.cfc
并不能解决问题:
<cfcomponent extends="taffy.core.api">
<cfscript>
this.name = hash(getCurrentTemplatePath());
this.mappings = StructNew();
this.mappings['/taffy'] =
expandPath('./taffy');
此外,添加以下内容~/public_html/api/Application.cfc
也不能解决问题:
<cfset this.mappings["/taffy"] =
expandPath(getDirectoryFromPath(getCurrentTemplatePath()) & "taffy")>
查看以下命令序列,如果我忽略了某些内容,请告诉我。在浏览到“http://domain/~uname/api”时,我仍然留下“找不到 ColdFusion 组件或接口 taffy.core.api”。
[uname@domain ~]$ cd ~/public_html
[uname@domain ~/public_html]$ rm -rf api
[uname@domain ~/public_html/api]$ wget -O taffy.zip https://github.com/atuttle/Taffy/zipball/master
[uname@domain ~/public_html/api]$ unzip taffy.zip
[uname@domain ~/public_html/api]$ mv atuttle-Taffy-35df54e/ taffy
[uname@domain ~/public_html/api]$ mv taffy/examples/api .
[uname@domain ~/public_html/api]$ mv taffy api/
[uname@domain ~/public_html/api]$ tree -d ~/public_html/api/
~/public_html/api/
|-- resources
`-- taffy
|-- bonus
|-- core
|-- examples
| |-- ParentApplication
| | |-- config
| | |-- mixin
... etc
[uname@domain ~/public_html/api]$ ls -la ~/public_html/api/
total 8
drwxr-xr-x 4 uname ugroup 1024 Dec 9 11:00 .
drwxr-xr-x 10 uname web 1024 Dec 9 10:57 ..
-rw-r--r-- 1 uname ugroup 1188 Dec 9 11:00 Application.cfc
-rw-r--r-- 1 uname ugroup 172 Sep 20 13:04 .htaccess
-rw-r--r-- 1 uname ugroup 218 Sep 20 13:04 index.cfm
drwxr-xr-x 2 uname ugroup 1024 Sep 20 13:04 resources
drwxr-xr-x 8 uname ugroup 1024 Sep 20 13:04 taffy
[uname@domain ~/public_html/api]$ ls -la ~/public_html/api/taffy/
total 15
drwxr-xr-x 8 uname ugroup 1024 Sep 20 13:04 .
drwxr-xr-x 4 uname ugroup 1024 Dec 9 11:00 ..
drwxr-xr-x 2 uname ugroup 96 Sep 20 13:04 bonus
-rw-r--r-- 1 uname ugroup 4096 Sep 20 13:04 build.xml
drwxr-xr-x 2 uname ugroup 1024 Sep 20 13:04 core
drwxr-xr-x 15 uname ugroup 1024 Dec 9 10:57 examples
-rw-r--r-- 1 uname ugroup 99 Sep 20 13:04 .gitignore
drwxr-xr-x 2 uname ugroup 96 Sep 20 13:04 lib
-rw-r--r-- 1 uname ugroup 1356 Sep 20 13:04 LICENSE.TXT
-rw-r--r-- 1 uname ugroup 2490 Sep 20 13:04 ReadMe.md
drwxr-xr-x 3 uname ugroup 96 Sep 20 13:04 snippets
drwxr-xr-x 5 uname ugroup 1024 Sep 20 13:04 tests
[uname@domain ~/public_html/api]$ ls -la ~/public_html/api/taffy/core/
total 72
drwxr-xr-x 2 uname ugroup 1024 Sep 20 13:04 .
drwxr-xr-x 8 uname ugroup 1024 Sep 20 13:04 ..
-rw-r--r-- 1 uname ugroup 42382 Sep 20 13:04 api.cfc
-rw-r--r-- 1 uname ugroup 4574 Sep 20 13:04 baseRepresentation.cfc
-rw-r--r-- 1 uname ugroup 2572 Sep 20 13:04 dashboard.cfm
-rw-r--r-- 1 uname ugroup 1756 Sep 20 13:04 dashboard.css
-rw-r--r-- 1 uname ugroup 4538 Sep 20 13:04 docs.cfm
-rw-r--r-- 1 uname ugroup 3030 Sep 20 13:04 factory.cfc
-rw-r--r-- 1 uname ugroup 179 Sep 20 13:04 genericRepresentation.cfc
-rw-r--r-- 1 uname ugroup 3516 Sep 20 13:04 mocker.cfm
-rw-r--r-- 1 uname ugroup 389 Sep 20 13:04 nativeJsonRepresentation.cfc
-rw-r--r-- 1 uname ugroup 3765 Sep 20 13:04 resource.cfc