You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@couchdb.apache.org by "Alexander Shorin (Created) (JIRA)" <ji...@apache.org> on 2012/03/07 06:24:00 UTC

[jira] [Created] (COUCHDB-1431) DDoc name with underscore as first char produce invalid filters

DDoc name with underscore as first char produce invalid filters
---------------------------------------------------------------

                 Key: COUCHDB-1431
                 URL: https://issues.apache.org/jira/browse/COUCHDB-1431
             Project: CouchDB
          Issue Type: Bug
          Components: Database Core
    Affects Versions: 1.2, 1.3
         Environment: Apache CouchDB 1.3.0a-5cece68-git
Apache CouchDB 1.2.0a-0d8ddc8-git
            Reporter: Alexander Shorin


CouchDB allows to create design document with id as `_design/_private`, but there is no way to use filters from it:

$ curl -v http://localhost:5984/test/_changes?filter=_private/confidential
* About to connect() to localhost port 5984 (#0)
*   Trying 127.0.0.1...
* connected
* Connected to localhost (127.0.0.1) port 5984 (#0)
> GET /test/_changes?filter=_private/confidential HTTP/1.1
> User-Agent: curl/7.24.0 (i686-pc-linux-gnu) libcurl/7.24.0 GnuTLS/2.10.5 zlib/1.2.5
> Host: localhost:5984
> Accept: */*
> 
< HTTP/1.1 400 Bad Request
< Server: CouchDB/1.3.0a-5cece68-git (Erlang OTP/R14B04)
< Date: Wed, 07 Mar 2012 04:51:06 GMT
< Content-Type: text/plain; charset=utf-8
< Content-Length: 63
< Cache-Control: must-revalidate
< 
{"error":"bad_request","reason":"unknown builtin filter name"}
* Connection #0 to host localhost left intact
* Closing connection #0

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (COUCHDB-1431) DDoc name with underscore as first char produce invalid filters

Posted by "Jason Smith (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/COUCHDB-1431?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13224038#comment-13224038 ] 

Jason Smith commented on COUCHDB-1431:
--------------------------------------

I guess it makes sense that _design/_whatever is disallowed; but if CouchDB did that, it would entail whitelisting _design/_auth in the _users db, and _design/_replicator in /_replicator.
                
> DDoc name with underscore as first char produce invalid filters
> ---------------------------------------------------------------
>
>                 Key: COUCHDB-1431
>                 URL: https://issues.apache.org/jira/browse/COUCHDB-1431
>             Project: CouchDB
>          Issue Type: Bug
>          Components: Database Core
>    Affects Versions: 1.2, 1.3
>         Environment: Apache CouchDB 1.3.0a-5cece68-git
> Apache CouchDB 1.2.0a-0d8ddc8-git
>            Reporter: Alexander Shorin
>
> CouchDB allows to create design document with id as `_design/_private`, but there is no way to use filters from it:
> $ curl -v http://localhost:5984/test/_changes?filter=_private/confidential
> * About to connect() to localhost port 5984 (#0)
> *   Trying 127.0.0.1...
> * connected
> * Connected to localhost (127.0.0.1) port 5984 (#0)
> > GET /test/_changes?filter=_private/confidential HTTP/1.1
> > User-Agent: curl/7.24.0 (i686-pc-linux-gnu) libcurl/7.24.0 GnuTLS/2.10.5 zlib/1.2.5
> > Host: localhost:5984
> > Accept: */*
> > 
> < HTTP/1.1 400 Bad Request
> < Server: CouchDB/1.3.0a-5cece68-git (Erlang OTP/R14B04)
> < Date: Wed, 07 Mar 2012 04:51:06 GMT
> < Content-Type: text/plain; charset=utf-8
> < Content-Length: 63
> < Cache-Control: must-revalidate
> < 
> {"error":"bad_request","reason":"unknown builtin filter name"}
> * Connection #0 to host localhost left intact
> * Closing connection #0

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (COUCHDB-1431) DDoc name with underscore as first char produce invalid filters

Posted by "Paul Joseph Davis (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/COUCHDB-1431?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13224044#comment-13224044 ] 

Paul Joseph Davis commented on COUCHDB-1431:
--------------------------------------------

Interesting. If only someone had raised concerns about having such things as HTTP accessible databases that mandated API compatibility with non-system databases.
                
> DDoc name with underscore as first char produce invalid filters
> ---------------------------------------------------------------
>
>                 Key: COUCHDB-1431
>                 URL: https://issues.apache.org/jira/browse/COUCHDB-1431
>             Project: CouchDB
>          Issue Type: Bug
>          Components: Database Core
>    Affects Versions: 1.2, 1.3
>         Environment: Apache CouchDB 1.3.0a-5cece68-git
> Apache CouchDB 1.2.0a-0d8ddc8-git
>            Reporter: Alexander Shorin
>
> CouchDB allows to create design document with id as `_design/_private`, but there is no way to use filters from it:
> $ curl -v http://localhost:5984/test/_changes?filter=_private/confidential
> * About to connect() to localhost port 5984 (#0)
> *   Trying 127.0.0.1...
> * connected
> * Connected to localhost (127.0.0.1) port 5984 (#0)
> > GET /test/_changes?filter=_private/confidential HTTP/1.1
> > User-Agent: curl/7.24.0 (i686-pc-linux-gnu) libcurl/7.24.0 GnuTLS/2.10.5 zlib/1.2.5
> > Host: localhost:5984
> > Accept: */*
> > 
> < HTTP/1.1 400 Bad Request
> < Server: CouchDB/1.3.0a-5cece68-git (Erlang OTP/R14B04)
> < Date: Wed, 07 Mar 2012 04:51:06 GMT
> < Content-Type: text/plain; charset=utf-8
> < Content-Length: 63
> < Cache-Control: must-revalidate
> < 
> {"error":"bad_request","reason":"unknown builtin filter name"}
> * Connection #0 to host localhost left intact
> * Closing connection #0

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (COUCHDB-1431) DDoc name with underscore as first char produce invalid filters

Posted by "Paul Joseph Davis (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/COUCHDB-1431?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13224028#comment-13224028 ] 

Paul Joseph Davis commented on COUCHDB-1431:
--------------------------------------------

Wonky. Although as far as I see it, the bug here is that we allow the underscore after "_design/" not that we can't use filters from it. Anyone have other thoughts?
                
> DDoc name with underscore as first char produce invalid filters
> ---------------------------------------------------------------
>
>                 Key: COUCHDB-1431
>                 URL: https://issues.apache.org/jira/browse/COUCHDB-1431
>             Project: CouchDB
>          Issue Type: Bug
>          Components: Database Core
>    Affects Versions: 1.2, 1.3
>         Environment: Apache CouchDB 1.3.0a-5cece68-git
> Apache CouchDB 1.2.0a-0d8ddc8-git
>            Reporter: Alexander Shorin
>
> CouchDB allows to create design document with id as `_design/_private`, but there is no way to use filters from it:
> $ curl -v http://localhost:5984/test/_changes?filter=_private/confidential
> * About to connect() to localhost port 5984 (#0)
> *   Trying 127.0.0.1...
> * connected
> * Connected to localhost (127.0.0.1) port 5984 (#0)
> > GET /test/_changes?filter=_private/confidential HTTP/1.1
> > User-Agent: curl/7.24.0 (i686-pc-linux-gnu) libcurl/7.24.0 GnuTLS/2.10.5 zlib/1.2.5
> > Host: localhost:5984
> > Accept: */*
> > 
> < HTTP/1.1 400 Bad Request
> < Server: CouchDB/1.3.0a-5cece68-git (Erlang OTP/R14B04)
> < Date: Wed, 07 Mar 2012 04:51:06 GMT
> < Content-Type: text/plain; charset=utf-8
> < Content-Length: 63
> < Cache-Control: must-revalidate
> < 
> {"error":"bad_request","reason":"unknown builtin filter name"}
> * Connection #0 to host localhost left intact
> * Closing connection #0

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira