青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

小默

【轉】HTTP Document API //TOFILE


This is an introduction to the CouchDB HTTP document API.

Naming/Addressing

Documents stored in a CouchDB have a DocID. DocIDs are case-sensitive string identifiers that uniquely identify a document. Two documents cannot have the same identifier in the same database, they are considered the same document.

 

http://localhost:5984/test/some_doc_id
http://localhost:5984/test/another_doc_id
http://localhost:5984/test/BA1F48C5418E4E68E5183D5BD1F06476


The above URLs point to some_doc_id, another_doc_id and BA1F48C5418E4E68E5183D5BD1F06476 in the database test.

Documents

A CouchDB document is simply a JSON object. You can use any JSON structure with nesting. You can fetch the document's revision information by adding ?revs=true or ?revs_info=true to the get request.

Here are two simple examples of documents:

{
"_id":"discussion_tables",
"_rev":"D1C946B7",
"Sunrise":true,
"Sunset":false,
"FullHours":[1,2,3,4,5,6,7,8,9,10],
"Activities": [
{
"Name":"Football""Duration":2"DurationUnit":"Hours"},
{
"Name":"Breakfast""Duration":40"DurationUnit":"Minutes""Attendees":["Jan""Damien""Laura""Gwendolyn""Roseanna"]}
]
}

{
"_id":"some_doc_id",
"_rev":"D1C946B7",
"Subject":"I like Plankton",
"Author":"Rusty",
"PostedDate":"2006-08-15T17:30:12-04:00",
"Tags":["plankton""baseball""decisions"],
"Body":"I decided today that I don't like baseball. I like plankton."
}

Special Fields

Note that any top-level fields with a name that starts with a _ prefix are reserved for use by CouchDB itself. Also see Reserved_words. Currently (0.10+) reserved fields are:

Field Name

Description

_id

The unique identifier of the document (mandatory and immutable)

_rev

The current MVCC-token/revision of this document (mandatory and immutable)

_attachments

If the document has attachments, _attachments holds a (meta-)data structure (see section on HTTP_Document_API#Attachments)

_deleted

Indicates that this document has been deleted and will be removed on next compaction run

_revisions

If the document was requested with ?revs=true this field will hold a simple list of the documents history

_rev_infos

Similar to _revisions, but more details about the history and the availability of ancient versions of the document

_conflicts

Information about conflicts

_deleted_conflicts

Information about conflicts

Document IDs

Document IDs don't have restrictions on what characters can be used. Although it should work, it is recommended to use non-special characters for document IDs. Using special characters you have to be aware of proper URL en-/decoding. Documents prefixed with _ are special documents:

Document ID prefix

Description

_design/

are DesignDocuments

_local/

are not being replicated (local documents) and used for Replication checkpointing.

You can have / as part of the document ID but if you refer to a document in a URL you must always encode it as %2F. One special case is _design/ documents, those accept either / or %2F for the / after _design, although / is preferred and %2F is still needed for the rest of the DocID.

Working With Documents Over HTTP

GET

To retrieve a document, simply perform a GET operation at the document's URL:

GET /somedatabase/some_doc_id HTTP/1.0

Here is the server's response:

HTTP/1.1 200 OK
Date: Thu, 
17 Aug 2006 05:39:28 +0000GMT
Content
-Type: application/json
Connection: close
{
"_id":"some_doc_id",
"_rev":"946B7D1C",
"Subject":"I like Plankton",
"Author":"Rusty",
"PostedDate":"2006-08-15T17:30:12Z-04:00",
"Tags":["plankton""baseball""decisions"],
"Body":"I decided today that I don't like baseball. I like plankton."
}

Accessing Previous Revisions

See DocumentRevisions for additional notes on revisions.

The above example gets the current revision. You may be able to get a specific revision by using the following syntax:

GET /somedatabase/some_doc_id?rev=946B7D1C HTTP/1.0

To find out what revisions are available for a document, you can do:

GET /somedatabase/some_doc_id?revs=true HTTP/1.0

This returns the current revision of the document, but with an additional field, _revisions, the value being a list of the available revision IDs. Note though that not every of those revisions of the document is necessarily still available. For example, the content of an old revision get removed by compacting the database, or it may only exist in a different database if it was replicated.

To get more detailed information about the available document revisions, use the revs_info parameter instead. In this case, the JSON result will contain a _revs_info property, which is an array of objects, for example:

{
"_revs_info": [
{
"rev""123456""status""disk"},
{
"rev""234567""status""missing"},
{
"rev""345678""status""deleted"},
]
}

Here, disk means the revision content is stored on disk and can still be retrieved. The other values indicate that the content of that revision is not available.

You can fetch the bodies of multiple revisions at once using the parameter open_revs=["rev1","rev2",...], or you can fetch all leaf revisions using open_revs=all (see Replication_and_conflicts). The JSON returns an array of objects with an "ok" key pointing to the document, or a "missing" key pointing to the rev string.

[
{
"missing":"1-fbd8a6da4d669ae4b909fcdb42bb2bfd"},
{
"ok":{"_id":"test","_rev":"2-5bc3c6319edf62d4c624277fdd0ae191","hello":"foo"}}
]

PUT

To create new document you can either use a POST operation or a PUT operation. To create/update a named document using the PUT operation, the URL must point to the document's location.

The following is an example HTTP PUT. It will cause the CouchDB server to generate a new revision ID and save the document with it.

PUT /somedatabase/some_doc_id HTTP/1.0
Content
-Length: 245
Content
-Type: application/json
{
"Subject":"I like Plankton",
"Author":"Rusty",
"PostedDate":"2006-08-15T17:30:12-04:00",
"Tags":["plankton""baseball""decisions"],
"Body":"I decided today that I don't like baseball. I like plankton."
}

Here is the server's response.

HTTP/1.1 201 Created
Date: Thu, 
17 Aug 2006 05:39:28 +0000GMT
Content
-Type: application/json
Connection: close
{
"ok"true"id""some_doc_id""rev""946B7D1C"}

To update an existing document, you also issue a PUT request. In this case, the JSON body must contain a _rev property, which lets CouchDB know which revision the edits are based on. If the revision of the document currently stored in the database doesn't match, then a 409 conflict error is returned.

If the revision number does match what's in the database, a new revision number is generated and returned to the client.

For example:

PUT /somedatabase/some_doc_id HTTP/1.0
Content
-Length: 245
Content
-Type: application/json
{
"_id":"some_doc_id",
"_rev":"946B7D1C",
"Subject":"I like Plankton",
"Author":"Rusty",
"PostedDate":"2006-08-15T17:30:12-04:00",
"Tags":["plankton""baseball""decisions"],
"Body":"I decided today that I don't like baseball. I like plankton."
}

Here is the server's response if what is stored in the database is revision 946B7D1C of document some_doc_id.

HTTP/1.1 201 Created
Date: Thu, 
17 Aug 2006 05:39:28 +0000GMT
Content
-Type: application/json
Connection: close
{
"ok":true"id":"some_doc_id""rev":"2774761002"}

And here is the server's response if there is an update conflict (what is currently stored in the database is not revision 946B7D1C of document some_doc_id).

HTTP/1.1 409 Conflict
Date: Thu, 
17 Aug 2006 05:39:28 +0000GMT
Content
-Length: 33
Connection: close
{
"error":"conflict","reason":"Document update conflict."}

There is a query option batch=ok which can be used to achieve higher throughput at the cost of lower guarantees. When a PUT (or a document POST as described below) is sent using this option, it is not immediately written to disk. Instead it is stored in memory on a per-user basis for a second or so (or the number of docs in memory reaches a certain point). After the threshold has passed, the docs are committed to disk. Instead of waiting for the doc to be written to disk before responding, CouchDB sends an HTTP 202 Accepted response immediately.

batch=ok is not suitable for crucial data, but it ideal for applications like logging which can accept the risk that a small proportion of updates could be lost due to a crash. Docs in the batch can also be flushed manually using the _ensure_full_commit API.

POST

The POST operation can be used to create a new document with a server generated DocID. To create a named document, use the PUT method instead. It is recommended that you avoid POST when possible, because proxies and other network intermediaries will occasionally resend POST requests, which can result in duplicate document creation. If your client software is not capable of guaranteeing uniqueness of generated UUIDs, use a GET to /_uuids?count=100 to retrieve a list of document IDs for future PUT requests. Please note that the /_uuids-call does not check for existing document ids; collision-detection happens when you are trying to save a document.

The following is an example HTTP POST. It will cause the CouchDB server to generate a new DocID and revision ID and save the document with it.

POST /somedatabase/ HTTP/1.0
Content
-Length: 245
Content
-Type: application/json
{
"Subject":"I like Plankton",
"Author":"Rusty",
"PostedDate":"2006-08-15T17:30:12-04:00",
"Tags":["plankton""baseball""decisions"],
"Body":"I decided today that I don't like baseball. I like plankton."
}

Here is the server's response:

HTTP/1.1 201 Created
Date: Thu, 
17 Aug 2006 05:39:28 +0000GMT
Content
-Type: application/json
Connection: close
{
"ok":true"id":"123BAC""rev":"946B7D1C"}

DELETE

To delete a document, perform a DELETE operation at the document's location, passing the rev parameter with the document's current revision. If successful, it will return the revision id for the deletion stub.

DELETE /somedatabase/some_doc?rev=1582603387 HTTP/1.0

As an alternative you can submit the rev parameter with the etag header field If-Match.

DELETE /somedatabase/some_doc HTTP/1.0
If
-Match: "1582603387"

And the response:

HTTP/1.1 200 OK
Date: Thu, 
17 Aug 2006 05:39:28 +0000GMT
Content
-Type: application/json
Connection: close
{
"ok":true,"rev":"2839830636"}

COPY

Note that this is a non-standard extension to HTTP.

You can copy documents by sending an HTTP COPY request. This allows you to duplicate the contents (and attachments) of a document to a new document under a different document id without first retrieving it from CouchDB. Use the Destination header to specify the document that you want to copy to (the target document).

It is not possible to copy documents between databases and it is not (yet) possible to perform bulk copy operations.

COPY /somedatabase/some_doc HTTP/1.1
Destination: some_other_doc

If you want to overwrite an existing document, you need to specify the target document's revision with a rev parameter in the Destination header:

COPY /somedatabase/some_doc HTTP/1.1
Destination: some_other_doc
?rev=rev_id

The response in both cases includes the target document's revision:

HTTP/1.1 201 Created
Server: CouchDB
/0.9.0a730122-incubating (Erlang OTP/R12B)
Etag: 
"355068078"
Date: Mon, 
05 Jan 2009 11:12:49 GMT
Content
-Type: text/plain;charset=utf-8
Content
-Length: 41
Cache
-Control: must-revalidate
{
"ok":true,"id":"some_other_doc","rev":"355068078"}

MOVE

For a ~6 month period CouchDB trunk between versions 0.8 and 0.9 included the nonstandard MOVE method. Since MOVE is really just COPY & DELETE and CouchDB can not reasonably guarantee atomicity between the COPY & MOVE operations on a single or on multiple nodes, this was removed before the release of CouchDB 0.9.

Bulk Docs

For information about editing multiple documents at the same time, see HTTP_Bulk_Document_API

All Documents

To get a listing of all documents in a database, use the special _all_docs URI. This is a specialized View so the Querying Options of the HTTP_view_API apply here.

GET somedatabase/_all_docs HTTP/1.0

Will return a listing of all documents and their revision IDs, ordered by DocID (case sensitive):

HTTP/1.1 200 OK
Date: Thu, 
17 Aug 2006 05:39:28 +0000GMT
Content
-Type: application/json
Connection: close
{
"total_rows"3"offset"0"rows": [
{
"id""doc1""key""doc1""value": {"rev""4324BB"}},
{
"id""doc2""key""doc2""value": {"rev":"2441HF"}},
{
"id""doc3""key""doc3""value": {"rev":"74EC24"}}
]
}

Use the query argument descending=true to reverse the order of the output table:

Will return the same as before but in reverse order:

HTTP/1.1 200 OK
Date: Thu, 
17 Aug 2006 05:39:28 +0000GMT
Content
-Type: application/json
Connection: close
{
"total_rows"3"offset"0"rows": [
{
"id""doc3""key""doc3""value": {"rev":"74EC24"}}
{
"id""doc2""key""doc2""value": {"rev":"2441HF"}},
{
"id""doc1""key""doc1""value": {"rev""4324BB"}},
]
}

The query string parameters startkey, endkey and limit may also be used to limit the result set. For example:

GET somedatabase/_all_docs?startkey="doc2"&limit=2 HTTP/1.0

Will return:

HTTP/1.1 200 OK
Date: Thu, 
17 Aug 2006 05:39:28 +0000GMT
Content
-Type: application/json
Connection: close
{
"total_rows"3"offset"1"rows": [
{
"id""doc2""key""doc2""value": {"rev":"2441HF"}},
{
"id""doc3""key""doc3""value": {"rev":"74EC24"}}
]
}

Use endkey if you are interested in a specific range of documents:

GET somedatabase/_all_docs?startkey="doc2"&endkey="doc3" HTTP/1.0

This will get keys inbetween and including doc2 and doc3; e.g. doc2-b and doc234.

Both approaches can be combined with descending:

GET somedatabase/_all_docs?startkey="doc2"&limit=2&descending=true HTTP/1.0

Will return:

HTTP/1.1 200 OK
Date: Thu, 
17 Aug 2006 05:39:28 +0000GMT
Content
-Type: application/json
Connection: close
{
"total_rows"3"offset"1"rows": [
{
"id""doc3""key""doc3""value": {"rev":"74EC24"}}
{
"id""doc2""key""doc2""value": {"rev":"2441HF"}},
]
}

If you add include_docs=true to a request to _all_docs not only metadata but also the documents themselves are returned.

all_docs_by_seq

NOTE: See /database/_changes as of 0.11

This allows you to see all the documents that were updated and deleted, in the order these actions are done:

GET somedatabase/_all_docs_by_seq HTTP/1.0

Will return:

HTTP/1.1 200 OK
Date: Fri, 
8 May 2009 11:07:02 +0000GMT
Content
-Type: application/json
Connection: close
{
"total_rows"4"offset"0"rows": [
{
"id""doc1""key""1""value": {"rev":"1-4124667444"}},
{
"id""doc2""key""2""value": {"rev":"1-1815587255"}},
{
"id""doc3""key""3""value": {"rev":"1-1750227892"}},
{
"id""doc4""key""4""value": {"rev":"2-524044848""deleted"true}}
]
}

All the view parameters work on _all_docs_by_seq, such as startkey, include_docs etc. However, note that the startkey is exclusive when applied to this view. This allows for a usage pattern where the startkey is set to the sequence id of the last doc returned by the previous query. As the startkey is exclusive, the same document won't be processed twice.

Attachments

Documents can have attachments just like email. There are two ways to use attachments. The first one is inline with your document and it described first. The second one is a separate REST API for attachments that is described a little further down.

A note on attachment names: Attachments may have embedded / characters that are sent unescaped to CouchDB. You can use this to provide a subtree of attachments under a document. A DocID must have any / escaped as %2F. So if you have document a/b/c with an attachment d/e/f.txt, you would be able to access it at http://couchdb/db/a%2fb%2fc/d/e/f.txt .

Inline Attachments

On creation, attachments go into a special _attachments attribute of the document. They are encoded in a JSON structure that holds the name, the content_type and the base64 encoded data of an attachment. A document can have any number of attachments.

When retrieving documents, the attachment's actual data is not included, only the metadata. The actual data has to be fetched separately, using a special URI.

If you need to access attachments with the document in one request, you can pass in the ?attachments=true URL parameter to get the data included in the JSON in the base64 encoded form. Since this puts a significant burden on CouchDB when you request this, you're not advised to use this feature unless you know what you are doing :)

Creating a document with an attachment:

{
"_id":"attachment_doc",
"_attachments":
{
"foo.txt":
{
"content_type":"text\/plain",
"data""VGhpcyBpcyBhIGJhc2U2NCBlbmNvZGVkIHRleHQ="
}
}
}

Please note that any base64 data you send has to be on a single line of characters, so pre-process your data to remove any carriage returns and newlines.

Requesting said document:

GET /database/attachment_doc

CouchDB replies:

{
"_id":"attachment_doc",
"_rev":1589456116,
"_attachments":
{
"foo.txt":
{
"stub":true,
"content_type":"text\/plain",
"length":29
}
}
}

Note that the "stub":true attribute denotes that this is not the complete attachment. Also, note the length attribute added automatically. When you update the document you must include the attachment stubs or CouchDB will delete the attachment.

Requesting the attachment:

GET /database/attachment_doc/foo.txt

CouchDB returns:

This is a base64 encoded text

Automatically decoded!

Multiple Attachments

Creating a document with two attachments:

{
"_id":"attachment_doc",
"_attachments":
{
"foo.txt":
{
"content_type":"text\/plain",
"data""VGhpcyBpcyBhIGJhc2U2NCBlbmNvZGVkIHRleHQ="
},
"bar.txt":
{
"content_type":"text\/plain",
"data""VGhpcyBpcyBhIGJhc2U2NCBlbmNvZGVkIHRleHQ="
}
}
}

Standalone Attachments

Note: This was added in version 0.9 of CouchDB. It is not available in earlier version.

CouchDB allows to create, change and delete attachments without touching the actual document. As a bonus feature, you do not have to base64 encode your data. This can significantly speed up requests since CouchDB and your client do not have to do the base64 conversion.

You need to specify a MIME type using the Content-Type header. CouchDB will serve the attachment with the specified Content-Type when asked.

To create an attachment:

PUT somedatabase/document/attachment?rev=123 HTTP/1.0
Content
-Length: 245
Content
-Type: image/jpeg
<JPEG data>

CouchDB replies:

{"ok"true"id""document""rev""765B7D1C"}

Note that you can do this on a non-existing document. The document and attachment will be created implicitly for you. A revision id must not be specified in this case.

To change an attachment:

PUT somedatabase/document/attachment?rev=765B7D1C HTTP/1.0
Content
-Length: 245
Content
-Type: image/jpeg
<JPEG data>

CouchDB replies:

{"ok"true"id""document""rev""766FC88G"}

To delete an attachment:

DELETE somedatabase/document/attachment?rev=765B7D1C HTTP/1.0

CouchDB replies:

{"ok":true,"id":"document","rev":"519558700"}

To retrieve an attachment:

GET somedatabase/document/attachment HTTP/1.0

CouchDB replies

Content-Type:image/jpeg
<JPEG data>

ETags/Caching

CouchDB sends an ETag Header for document requests. The ETag Header is simply the document's revision in quotes.

For example, a GET request:

GET /database/123182719287

Results in a reply with the following headers:

cache-control: no-cache,
pragma: no
-cache
expires: Tue, 
13 Nov 2007 23:09:50 GMT
transfer
-encoding: chunked
content
-type: text/plain;charset=utf-8
etag: 
"615790463"

POST requests also return an ETag header for either newly created or updated documents.

posted on 2010-05-11 10:20 小默 閱讀(696) 評論(0)  編輯 收藏 引用 所屬分類: Network

導航

統計

留言簿(13)

隨筆分類(287)

隨筆檔案(289)

漏洞

搜索

積分與排名

最新評論

閱讀排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            国产精品视频免费在线观看| 欧美高潮视频| 激情成人亚洲| 国产女人aaa级久久久级| 国产精品久久网| 国产精品夜夜嗨| 国内不卡一区二区三区| 激情综合久久| 亚洲人成人99网站| 夜夜嗨av一区二区三区四区| 亚洲深夜福利网站| 欧美伊人精品成人久久综合97| 香蕉免费一区二区三区在线观看| 久久av一区| 欧美激情一区二区三区在线| 亚洲精品久久久久久久久久久久| 久久久久久久综合色一本| 免费中文字幕日韩欧美| 亚洲精品一二区| 99re热这里只有精品免费视频| 亚洲欧美在线看| 免费精品99久久国产综合精品| 欧美日韩免费高清一区色橹橹| 国产欧美日韩亚州综合| 亚洲观看高清完整版在线观看| 国产精品99久久久久久www| 久久久99精品免费观看不卡| 亚洲激情视频| 久久精品麻豆| 国产精品国产馆在线真实露脸| 黄色免费成人| 亚洲欧美成人一区二区三区| 欧美不卡视频| 午夜一区在线| 欧美午夜视频在线| 亚洲欧洲一区| 久久人人97超碰人人澡爱香蕉 | 亚洲精品看片| 久久久精彩视频| 99精品国产在热久久婷婷| 久久久久成人精品| 欧美午夜视频网站| 一区二区三区国产盗摄| 免费欧美视频| 亚洲在线观看免费视频| 麻豆精品视频在线观看视频| 亚洲少妇最新在线视频| 免费av成人在线| 一区二区三区在线免费视频| 欧美一级黄色录像| 一区二区欧美在线观看| 免费在线亚洲欧美| 影音先锋久久| 蜜臀久久久99精品久久久久久| 欧美在线视频免费播放| 国产精品揄拍一区二区| 亚洲一区免费网站| 亚洲精品午夜精品| 欧美日韩精品在线观看| 亚洲精品欧美专区| 亚洲国产日韩一区| 欧美激情一区二区三区高清视频| 亚洲国产精品视频一区| 欧美成人精品一区二区| 浪潮色综合久久天堂| 亚洲成人中文| 亚洲第一网站| 欧美日本久久| 亚洲制服欧美中文字幕中文字幕| 一区二区三区国产精华| 国产精品理论片| 久久精品99久久香蕉国产色戒| 欧美一区国产二区| 在线观看日韩www视频免费 | 国产精品一区二区在线| 新片速递亚洲合集欧美合集| 亚洲一区在线观看免费观看电影高清 | 国产在线观看91精品一区| 久久不见久久见免费视频1| 久久av红桃一区二区小说| 一区二区亚洲精品国产| 亚洲第一天堂av| 欧美特黄一级大片| 欧美资源在线| 蜜桃av一区| 亚洲视频中文字幕| 亚洲欧美日韩精品综合在线观看| 国产一区二区电影在线观看| 欧美成人一品| 国产精品h在线观看| 久久久精品动漫| 欧美激情在线播放| 欧美亚洲免费在线| 麻豆久久久9性大片| 亚洲午夜激情网页| 久久九九免费| 亚洲一区二区高清| 欧美在线一二三区| 一本不卡影院| 久久精品亚洲热| 亚洲淫性视频| 免费成人在线观看视频| 国产精品人人爽人人做我的可爱| 久久久久99| 欧美日韩免费高清一区色橹橹| 久久精品视频在线播放| 欧美激情精品久久久久久| 欧美呦呦网站| 欧美日韩美女在线观看| 欧美成人自拍视频| 国产日韩精品在线播放| 亚洲精品在线二区| 在线不卡视频| 欧美影院成年免费版| 亚洲图中文字幕| 欧美电影免费网站| 久久久久久久91| 国产精品欧美一区喷水| 亚洲精品视频免费观看| 亚洲国产91精品在线观看| 欧美一级理论片| 亚洲一区二区精品在线观看| 免费在线亚洲| 免费短视频成人日韩| 国产一区二区三区在线免费观看 | 免费亚洲电影在线| 久久免费99精品久久久久久| 国产精品免费aⅴ片在线观看| 亚洲精品久久久久久久久久久久久| 在线播放日韩专区| 欧美一级久久久| 久久九九精品99国产精品| 欧美三级视频在线播放| 亚洲人成毛片在线播放女女| 亚洲国产一二三| 久久综合伊人| 欧美激情aⅴ一区二区三区| 狠狠色噜噜狠狠色综合久| 午夜精品在线观看| 欧美在线999| 国产免费成人av| 亚洲午夜日本在线观看| 亚洲综合欧美| 国产精品视频一区二区三区| 一区二区三区欧美日韩| 亚洲免费网站| 国产日韩欧美亚洲| 香蕉尹人综合在线观看| 久久国产精品黑丝| 国产在线国偷精品产拍免费yy| 欧美一区三区三区高中清蜜桃| 欧美一区二视频| 海角社区69精品视频| 美国成人直播| 亚洲精品一区在线观看香蕉| 亚洲一区二区三区免费在线观看| 欧美天天在线| 午夜久久电影网| 欧美激情精品久久久久| 夜夜嗨网站十八久久| 国产精品福利久久久| 欧美怡红院视频| 91久久精品国产91久久| 亚洲一区二区三区在线观看视频| 国产精自产拍久久久久久| 久久久蜜桃一区二区人| 亚洲精品在线二区| 激情视频一区二区三区| 榴莲视频成人在线观看| 国产精品国产三级国产专区53| 久久综合色影院| 日韩亚洲欧美成人| 欧美三级日韩三级国产三级| 午夜精品影院在线观看| 亚洲高清视频中文字幕| 亚洲欧美中文另类| 伊人蜜桃色噜噜激情综合| 欧美日韩国产欧美日美国产精品| 亚洲欧美美女| 亚洲激情网址| 欧美一区视频在线| 亚洲裸体俱乐部裸体舞表演av| 国产精品亚洲综合久久| 欧美国产欧美亚洲国产日韩mv天天看完整| 一区二区三区四区精品| 亚洲二区在线观看| 久久国产精品99国产| 亚洲婷婷在线| 91久久精品国产91久久| 国产日韩欧美综合精品| 欧美日韩精品| 美日韩免费视频| 久久精品二区| 亚洲天天影视| 亚洲精品之草原avav久久| 久久先锋影音av| 欧美影院一区| 欧美一区二区三区免费视频| 一区二区电影免费在线观看| 亚洲国产精品久久久久婷婷884|