Skip to content

Commit

Permalink
Merge pull request #1318 from grabolento/master
Browse files Browse the repository at this point in the history
Add VRPorn.com
  • Loading branch information
Maista6969 authored Jul 28, 2023
2 parents 3c93efa + 32cbe4c commit b19cb92
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 7 deletions.
1 change: 1 addition & 0 deletions SCRAPERS-LIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -1442,6 +1442,7 @@ vrcosplayx.com|BaDoink.yml|:heavy_check_mark:|:x:|:heavy_check_mark:|:heavy_chec
vrfirsttimer.com|SLRoriginals.yml|:heavy_check_mark:|:x:|:heavy_check_mark:|:x:|-|VR
vrhush.com|VRHush.yml|:heavy_check_mark:|:x:|:heavy_check_mark:|:x:|-|VR
vrlatina.com|VRLatina.yml|:heavy_check_mark:|:x:|:heavy_check_mark:|:heavy_check_mark:|-|VR
vrporn.com|VRPorn.yml|:heavy_check_mark:|:x:|:x:|:x:|-|VR
vrporncz.com|PornCZ.yml|:heavy_check_mark:|:x:|:x:|:x:|-|-
vrxdb.com|VrxDB.yml|:heavy_check_mark:|:x:|:x:|:x:|-|-
wakeupnfuck.com|WakeUpnFuck.yml|:heavy_check_mark:|:x:|:x:|:x:|-|-
Expand Down
16 changes: 9 additions & 7 deletions scrapers/RealJamVR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,31 @@ name: RealJamVR
sceneByURL:
- action: scrapeXPath
url:
- realjamvr.com
- realjamvr.com/scene/
scraper: sceneScraper
xPathScrapers:
sceneScraper:
scene:
Title:
selector: //h1
Date:
selector: //div[contains(@class, "date")]
selector: //div[@class="ms-4 text-nowrap"]/strong
postProcess:
- replace:
- regex: ','
with: ""
- parseDate: January 2 2006
Performers:
Name: //span[text()="Featuring:"]/following-sibling::a
Name: //div[@class="scene-view mx-auto"]/a
Tags:
Name: //span[text()="TAGS:"]/following-sibling::a
# Tags + Technical specs, excluding video duration
Name: //div[@class="lh-lg"]/a | //div[@class="d-flex justify-content-between my-2"]/div[1]/div[position()<last()]
Details:
selector: //div[contains(@class, "c-video-item-desc")]
selector: //div[@class="opacity-75 my-2"]
Image:
selector: //meta[@property="og:image"]/@content
selector: //dl8-video/@poster
Studio:
Name:
fixed: RealJamVR
# Last Updated June 25, 2021

# Last Updated May 16, 2023
36 changes: 36 additions & 0 deletions scrapers/VRPorn.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: "VRPorn"

sceneByURL:
- action: scrapeXPath
url:
- vrporn.com/
scraper: sceneScraper

xPathScrapers:
sceneScraper:
common:
$header: //header[@class="entry-header"]
$footer: //footer[@class="entry-footer"]
$videoarea: //footer[@class="entry-footer"]/div[@class="layout_area_video"]
scene:
Title: $header//h1[@class="content-title"]/text()
Date:
selector: $videoarea/div[2]/span[@class="footer-titles"]/text()
postProcess:
- replace:
- regex: Posted on (?:Premium on )?(.*)
with: $1
- parseDate: January 02, 2006
Details:
selector: //main/article/div//p/text()
concat: "\n\n"
Tags:
Name: $footer//a[@rel="tag"]/text()
Performers:
Name: $header//div[@class="name_pornstar"]/text()
Studio:
Name: $header//a[@id="studio-logo"]//span[@class="footer-titles"]/text()
Image: //main/article/header//dl8-video/@poster
URL: &sceneUrl //link[@rel="canonical"]/@href

# Last Updated April 20, 2023

0 comments on commit b19cb92

Please sign in to comment.