opendmm 0.3.15 → 0.3.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +1 -1
- data/lib/opendmm/makers/das.rb +32 -0
- data/lib/opendmm/makers/high_scene.rb +32 -0
- data/lib/opendmm/version.rb +1 -1
- data/test/maker_fixtures/AVOP-061.json +17 -0
- data/test/maker_fixtures/DASD-001.json +18 -0
- data/test/maker_fixtures/DAZD-001.json +15 -0
- data/test/maker_fixtures/HIGH-107.json +29 -0
- data/test/maker_fixtures/PLA-001.json +17 -0
- metadata +14 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 59053f60fc0605974020e64577e9f871e035f1f0
|
|
4
|
+
data.tar.gz: 649a596ac53c54d3fd6d1edf104228ba1e411031
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6267a36f79e9162323498044d1ee0151b585d0c7a4853d767bd2634feb8804cca0714694bda68984ca463ecc208db54741c6374f08acbc0e66c86cddcbcf5256
|
|
7
|
+
data.tar.gz: 9f2b021658f9c6f8bcb78d2e705a4ebcafa521723aa3da1948b6c2dbb5adaa2b4fc5614a3a176770066ab0029fc3e3f4f58895b463ab4621b297d4eed23b17b5
|
data/Rakefile
CHANGED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
base_uri 'dasdas.jp'
|
|
2
|
+
|
|
3
|
+
register_product(
|
|
4
|
+
/^(AVOP|DASD|DAZD|PLA)-?(\d{3})$/i,
|
|
5
|
+
'/works/-/detail/=/cid=#{$1.downcase}#{$2}/',
|
|
6
|
+
)
|
|
7
|
+
|
|
8
|
+
private
|
|
9
|
+
|
|
10
|
+
def self.parse_product_html(html)
|
|
11
|
+
specs = Utils.hash_from_dl html.css('#container > main > section > section > div.data > dl')
|
|
12
|
+
{
|
|
13
|
+
actresses: specs['出演者:'].text.split('/'),
|
|
14
|
+
# brand: String
|
|
15
|
+
# categories: Array
|
|
16
|
+
cover_image: html.at_css('div.jacketImage > h1 > a')['href'],
|
|
17
|
+
description: html.xpath('//*[@id="container"]/main/section/section/p[1]').text,
|
|
18
|
+
directors: specs['監督者:'].text.split('/'),
|
|
19
|
+
# genres: Array
|
|
20
|
+
# label: String
|
|
21
|
+
maker: 'ダスッ!',
|
|
22
|
+
movie_length: specs['収録時間:'].text,
|
|
23
|
+
release_date: specs['発売日:'].text,
|
|
24
|
+
# sample_images: Array
|
|
25
|
+
# scenes: Array
|
|
26
|
+
series: specs['シリーズ:'].text,
|
|
27
|
+
# subtitle: String
|
|
28
|
+
# theme: String
|
|
29
|
+
thumbnail_image: html.at_css('div.jacketImage > h1 > a > img')['src'],
|
|
30
|
+
title: html.css('#container > main > section > h1').text,
|
|
31
|
+
}
|
|
32
|
+
end
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
base_uri 'highscene.jp'
|
|
2
|
+
|
|
3
|
+
register_product(
|
|
4
|
+
/^(HIGH)-?(\d{3})$/i,
|
|
5
|
+
'/works/-/detail/=/cid=#{$1.downcase}#{$2}/',
|
|
6
|
+
)
|
|
7
|
+
|
|
8
|
+
private
|
|
9
|
+
|
|
10
|
+
def self.parse_product_html(html)
|
|
11
|
+
specs = Utils.hash_by_split html.css('#works-details > dl > dd > p').map(&:text)
|
|
12
|
+
{
|
|
13
|
+
actresses: [ html.css('#content > h2').text[/(?<=>>).*/] ],
|
|
14
|
+
# brand: String
|
|
15
|
+
# categories: Array
|
|
16
|
+
cover_image: html.at_css('#actimg > li > a')['href'],
|
|
17
|
+
description: html.css('#works-details > p.works-txt').text,
|
|
18
|
+
# directors: Array
|
|
19
|
+
genres: specs['ジャンル'].split('/'),
|
|
20
|
+
label: specs['レーベル'],
|
|
21
|
+
maker: 'High Scene',
|
|
22
|
+
movie_length: specs['収録時間'],
|
|
23
|
+
release_date: specs['配信日'],
|
|
24
|
+
sample_images: html.css('#actimg > li > a')[1..-1].map { |a| a['href'] },
|
|
25
|
+
# scenes: Array
|
|
26
|
+
# series: String
|
|
27
|
+
subtitle: html.css('#works-details > dl > dt > span').text,
|
|
28
|
+
# theme: String
|
|
29
|
+
thumbnail_image: html.at_css('#actimg > li > a > img')['src'],
|
|
30
|
+
title: html.css('#content > h2').text[/(?<=>>).*/],
|
|
31
|
+
}
|
|
32
|
+
end
|
data/lib/opendmm/version.rb
CHANGED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actresses": [
|
|
3
|
+
"初美沙希"
|
|
4
|
+
],
|
|
5
|
+
"code": "AVOP-061",
|
|
6
|
+
"cover_image": "http://dasdas.jp/images/works/avop061/avop061pl.jpg",
|
|
7
|
+
"description": "ザーメン出しまくるダスッ!ザーメン飲みまくるM’sが手を組んだ鬼畜協定・毒針連合。黒人&汁男達の66発の精子を初美沙希がクチ・マンコ・アナルで全穴ゴックン!全発射本物精子による解禁黒人3穴FUCK、ノーカット11連続中出し、30発2穴ブチ込みイカセを収録!真性中出しを示す半中半外&中出しザーメンもグラス溜めゴックン!射精欲を抑えきれない野獣達とゴックン大好き女神のザーメンフェスティバル! ※この作品の発売日は8月1日になります。",
|
|
8
|
+
"directors": [
|
|
9
|
+
"五右衛門"
|
|
10
|
+
],
|
|
11
|
+
"maker": "ダスッ!",
|
|
12
|
+
"movie_length": 9600,
|
|
13
|
+
"page": "http://dasdas.jp/works/-/detail/=/cid=avop061/",
|
|
14
|
+
"release_date": "2014-08-01",
|
|
15
|
+
"thumbnail_image": "http://dasdas.jp/images/works/avop061/avop061pl.jpg",
|
|
16
|
+
"title": "全発射本物精子!ノーカット11連続中出しセックス&ザーメンごっくん22連発プラスアナルマ○コぶっかけ精子ねじ込み30発さらに初黒人3穴ファック!"
|
|
17
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actresses": [
|
|
3
|
+
"青木りん"
|
|
4
|
+
],
|
|
5
|
+
"code": "DASD-001",
|
|
6
|
+
"cover_image": "http://dasdas.jp/images/works/dasd001/dasd001pl.jpg",
|
|
7
|
+
"description": "グラビアアイドル・青木りんが有名になるために男の排泄処理と化す!全身を弄ばれ、汚いチ○ポを連続イラマチオさせられて嗚咽をくり返す。そして、変態男達のチ○ポをムリヤリねじ込まれ20連発中出しされる!りんの膣奥にドロドロした精子がうごめく!!",
|
|
8
|
+
"directors": [
|
|
9
|
+
"☆HOKUSAI☆"
|
|
10
|
+
],
|
|
11
|
+
"maker": "ダスッ!",
|
|
12
|
+
"movie_length": 7200,
|
|
13
|
+
"page": "http://dasdas.jp/works/-/detail/=/cid=dasd001/",
|
|
14
|
+
"release_date": "2007-04-25",
|
|
15
|
+
"series": "20連発中出し!",
|
|
16
|
+
"thumbnail_image": "http://dasdas.jp/images/works/dasd001/dasd001pl.jpg",
|
|
17
|
+
"title": "グラビアアイドル青木りん20連発中出し!"
|
|
18
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actresses": [
|
|
3
|
+
"青木りん⁄小澤マリア⁄涼果りん⁄松嶋れいな⁄南つかさ"
|
|
4
|
+
],
|
|
5
|
+
"code": "DAZD-001",
|
|
6
|
+
"cover_image": "http://dasdas.jp/images/works/dazd001/dazd001pl.jpg",
|
|
7
|
+
"description": "S級女優5人の初中出し厳選100連発!!青木りん、小澤マリア、涼果りん、松嶋れいな、南つかさと超豪華女優達に凌辱の限りを尽くし、膣中に汚れたザーメンを注ぎこむ!今まで見ることの出来なかった衝撃映像が240分存分に堪能できる1本だ!",
|
|
8
|
+
"maker": "ダスッ!",
|
|
9
|
+
"movie_length": 14400,
|
|
10
|
+
"page": "http://dasdas.jp/works/-/detail/=/cid=dazd001/",
|
|
11
|
+
"release_date": "2007-10-25",
|
|
12
|
+
"series": "総集編",
|
|
13
|
+
"thumbnail_image": "http://dasdas.jp/images/works/dazd001/dazd001pl.jpg",
|
|
14
|
+
"title": "100連発中出し!"
|
|
15
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actresses": [
|
|
3
|
+
"ゆめ"
|
|
4
|
+
],
|
|
5
|
+
"code": "HIGH-107",
|
|
6
|
+
"cover_image": "http://highscene.jp/images/works/high107/high107jp-01.jpg",
|
|
7
|
+
"description": "某AVプロダクションの試し撮り映像。本当は宣材で裸の写真を撮るだけだったのを、女のコがノリノリだったので一緒にカラミも撮影。普段はギャル系ブランドのアパレル店員だそうです。黒く焼けた肌にブラからこぼれるほどのGカップ爆乳。パイズリされるとデカパイでチ○ポが見えなくなっちゃいます!",
|
|
8
|
+
"genres": [
|
|
9
|
+
"オナニー",
|
|
10
|
+
"ギャル",
|
|
11
|
+
"パイズリ",
|
|
12
|
+
"巨乳",
|
|
13
|
+
"潮吹き"
|
|
14
|
+
],
|
|
15
|
+
"label": "たわわなおっぱい",
|
|
16
|
+
"maker": "High Scene",
|
|
17
|
+
"movie_length": 4080,
|
|
18
|
+
"page": "http://highscene.jp/works/-/detail/=/cid=high107/",
|
|
19
|
+
"release_date": "2012-08-03",
|
|
20
|
+
"sample_images": [
|
|
21
|
+
"http://highscene.jp/images/works/high107/high107jp-02.jpg",
|
|
22
|
+
"http://highscene.jp/images/works/high107/high107jp-03.jpg",
|
|
23
|
+
"http://highscene.jp/images/works/high107/high107jp-04.jpg",
|
|
24
|
+
"http://highscene.jp/images/works/high107/high107jp-05.jpg"
|
|
25
|
+
],
|
|
26
|
+
"subtitle": "YUME",
|
|
27
|
+
"thumbnail_image": "http://highscene.jp/images/works/high107/high107js-01.jpg",
|
|
28
|
+
"title": "ゆめ"
|
|
29
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actresses": [
|
|
3
|
+
"夕樹舞子"
|
|
4
|
+
],
|
|
5
|
+
"code": "PLA-001",
|
|
6
|
+
"cover_image": "http://dasdas.jp/images/works/pla001/pla001pl.jpg",
|
|
7
|
+
"description": "「アジアの女神」としてストリップで活動していた、夕樹舞子が復活!復活までの軌跡インタビュー!オクチでH・誘惑フェラ!イキまくり絶頂SEX!初めての3P!成熟した大人の舞子を堪能せよ!!",
|
|
8
|
+
"directors": [
|
|
9
|
+
"鮫島潤市"
|
|
10
|
+
],
|
|
11
|
+
"maker": "ダスッ!",
|
|
12
|
+
"movie_length": 7200,
|
|
13
|
+
"page": "http://dasdas.jp/works/-/detail/=/cid=pla001/",
|
|
14
|
+
"release_date": "2010-04-25",
|
|
15
|
+
"thumbnail_image": "http://dasdas.jp/images/works/pla001/pla001pl.jpg",
|
|
16
|
+
"title": "復活 夕樹舞子"
|
|
17
|
+
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: opendmm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.16
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jun Zhou
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-07-
|
|
11
|
+
date: 2014-07-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -138,10 +138,12 @@ files:
|
|
|
138
138
|
- lib/opendmm/makers/candy.rb
|
|
139
139
|
- lib/opendmm/makers/caribbean.rb
|
|
140
140
|
- lib/opendmm/makers/cross.rb
|
|
141
|
+
- lib/opendmm/makers/das.rb
|
|
141
142
|
- lib/opendmm/makers/dip.rb
|
|
142
143
|
- lib/opendmm/makers/dmm_collection.rb
|
|
143
144
|
- lib/opendmm/makers/doc.rb
|
|
144
145
|
- lib/opendmm/makers/ebody.rb
|
|
146
|
+
- lib/opendmm/makers/high_scene.rb
|
|
145
147
|
- lib/opendmm/makers/ideapocket.rb
|
|
146
148
|
- lib/opendmm/makers/kawaii.rb
|
|
147
149
|
- lib/opendmm/makers/kira_kira.rb
|
|
@@ -201,6 +203,7 @@ files:
|
|
|
201
203
|
- test/maker_fixtures/ARM-191.json
|
|
202
204
|
- test/maker_fixtures/ARMG-223.json
|
|
203
205
|
- test/maker_fixtures/ATID-183.json
|
|
206
|
+
- test/maker_fixtures/AVOP-061.json
|
|
204
207
|
- test/maker_fixtures/BBI-104.json
|
|
205
208
|
- test/maker_fixtures/BEB-001.json
|
|
206
209
|
- test/maker_fixtures/BF-175.json
|
|
@@ -223,6 +226,8 @@ files:
|
|
|
223
226
|
- test/maker_fixtures/CRSS-013.json
|
|
224
227
|
- test/maker_fixtures/CWM-156.json
|
|
225
228
|
- test/maker_fixtures/Carib 021511-620.json
|
|
229
|
+
- test/maker_fixtures/DASD-001.json
|
|
230
|
+
- test/maker_fixtures/DAZD-001.json
|
|
226
231
|
- test/maker_fixtures/DCOL-017.json
|
|
227
232
|
- test/maker_fixtures/DGL-007.json
|
|
228
233
|
- test/maker_fixtures/DGL-066.json
|
|
@@ -236,6 +241,7 @@ files:
|
|
|
236
241
|
- test/maker_fixtures/FTN-002.json
|
|
237
242
|
- test/maker_fixtures/GDW-006.json
|
|
238
243
|
- test/maker_fixtures/HAZ-009.json
|
|
244
|
+
- test/maker_fixtures/HIGH-107.json
|
|
239
245
|
- test/maker_fixtures/HON-001.json
|
|
240
246
|
- test/maker_fixtures/IDBD-447.json
|
|
241
247
|
- test/maker_fixtures/INF-003.json
|
|
@@ -294,6 +300,7 @@ files:
|
|
|
294
300
|
- test/maker_fixtures/PBD-134.json
|
|
295
301
|
- test/maker_fixtures/PGD-306.json
|
|
296
302
|
- test/maker_fixtures/PJD-085.json
|
|
303
|
+
- test/maker_fixtures/PLA-001.json
|
|
297
304
|
- test/maker_fixtures/PPB-008.json
|
|
298
305
|
- test/maker_fixtures/PPP-001.json
|
|
299
306
|
- test/maker_fixtures/PPPD-102.json
|
|
@@ -413,6 +420,7 @@ test_files:
|
|
|
413
420
|
- test/maker_fixtures/ARM-191.json
|
|
414
421
|
- test/maker_fixtures/ARMG-223.json
|
|
415
422
|
- test/maker_fixtures/ATID-183.json
|
|
423
|
+
- test/maker_fixtures/AVOP-061.json
|
|
416
424
|
- test/maker_fixtures/BBI-104.json
|
|
417
425
|
- test/maker_fixtures/BEB-001.json
|
|
418
426
|
- test/maker_fixtures/BF-175.json
|
|
@@ -435,6 +443,8 @@ test_files:
|
|
|
435
443
|
- test/maker_fixtures/CRSS-013.json
|
|
436
444
|
- test/maker_fixtures/CWM-156.json
|
|
437
445
|
- test/maker_fixtures/Carib 021511-620.json
|
|
446
|
+
- test/maker_fixtures/DASD-001.json
|
|
447
|
+
- test/maker_fixtures/DAZD-001.json
|
|
438
448
|
- test/maker_fixtures/DCOL-017.json
|
|
439
449
|
- test/maker_fixtures/DGL-007.json
|
|
440
450
|
- test/maker_fixtures/DGL-066.json
|
|
@@ -448,6 +458,7 @@ test_files:
|
|
|
448
458
|
- test/maker_fixtures/FTN-002.json
|
|
449
459
|
- test/maker_fixtures/GDW-006.json
|
|
450
460
|
- test/maker_fixtures/HAZ-009.json
|
|
461
|
+
- test/maker_fixtures/HIGH-107.json
|
|
451
462
|
- test/maker_fixtures/HON-001.json
|
|
452
463
|
- test/maker_fixtures/IDBD-447.json
|
|
453
464
|
- test/maker_fixtures/INF-003.json
|
|
@@ -506,6 +517,7 @@ test_files:
|
|
|
506
517
|
- test/maker_fixtures/PBD-134.json
|
|
507
518
|
- test/maker_fixtures/PGD-306.json
|
|
508
519
|
- test/maker_fixtures/PJD-085.json
|
|
520
|
+
- test/maker_fixtures/PLA-001.json
|
|
509
521
|
- test/maker_fixtures/PPB-008.json
|
|
510
522
|
- test/maker_fixtures/PPP-001.json
|
|
511
523
|
- test/maker_fixtures/PPPD-102.json
|