├── .circleci └── config.yml ├── .coveralls.yml ├── .eslintrc.json ├── .gitignore ├── .npmignore ├── .nycrc.json ├── LICENSE ├── README.md ├── package.json ├── src ├── configs │ ├── content.js │ ├── headers.js │ ├── search.js │ └── urls.js ├── index.js ├── pages │ ├── gallery.js │ ├── model.js │ ├── page.js │ ├── search.js │ ├── video.js │ └── videos.js └── utils │ ├── endpoints.js │ └── urlBuilder.js └── tests ├── fixtures ├── loginPage.html ├── notFoundPage.html ├── validModelResult.html ├── validModelVideosResult.html ├── validSearchModelResult.html ├── validVideoResult.html └── validVideosResult.html ├── helpers ├── fixtures.js └── matching.js └── pages ├── model.test.js ├── modelVideos.test.js ├── page.test.js ├── search.test.js ├── video.test.js └── videos.test.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: JEvpz09FOkUEX8J8tOqtBbcwmdKucSpDF 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "airbnb" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | test.js 2 | .idea 3 | node_modules/ 4 | .nyc_output/ 5 | coverage/ 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/.npmignore -------------------------------------------------------------------------------- /.nycrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/.nycrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/package.json -------------------------------------------------------------------------------- /src/configs/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/src/configs/content.js -------------------------------------------------------------------------------- /src/configs/headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/src/configs/headers.js -------------------------------------------------------------------------------- /src/configs/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/src/configs/search.js -------------------------------------------------------------------------------- /src/configs/urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/src/configs/urls.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/src/pages/gallery.js -------------------------------------------------------------------------------- /src/pages/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/src/pages/model.js -------------------------------------------------------------------------------- /src/pages/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/src/pages/page.js -------------------------------------------------------------------------------- /src/pages/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/src/pages/search.js -------------------------------------------------------------------------------- /src/pages/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/src/pages/video.js -------------------------------------------------------------------------------- /src/pages/videos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/src/pages/videos.js -------------------------------------------------------------------------------- /src/utils/endpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/src/utils/endpoints.js -------------------------------------------------------------------------------- /src/utils/urlBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/src/utils/urlBuilder.js -------------------------------------------------------------------------------- /tests/fixtures/loginPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/tests/fixtures/loginPage.html -------------------------------------------------------------------------------- /tests/fixtures/notFoundPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/tests/fixtures/notFoundPage.html -------------------------------------------------------------------------------- /tests/fixtures/validModelResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/tests/fixtures/validModelResult.html -------------------------------------------------------------------------------- /tests/fixtures/validModelVideosResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/tests/fixtures/validModelVideosResult.html -------------------------------------------------------------------------------- /tests/fixtures/validSearchModelResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/tests/fixtures/validSearchModelResult.html -------------------------------------------------------------------------------- /tests/fixtures/validVideoResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/tests/fixtures/validVideoResult.html -------------------------------------------------------------------------------- /tests/fixtures/validVideosResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/tests/fixtures/validVideosResult.html -------------------------------------------------------------------------------- /tests/helpers/fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/tests/helpers/fixtures.js -------------------------------------------------------------------------------- /tests/helpers/matching.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/tests/helpers/matching.js -------------------------------------------------------------------------------- /tests/pages/model.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/tests/pages/model.test.js -------------------------------------------------------------------------------- /tests/pages/modelVideos.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/tests/pages/modelVideos.test.js -------------------------------------------------------------------------------- /tests/pages/page.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/tests/pages/page.test.js -------------------------------------------------------------------------------- /tests/pages/search.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/tests/pages/search.test.js -------------------------------------------------------------------------------- /tests/pages/video.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/tests/pages/video.test.js -------------------------------------------------------------------------------- /tests/pages/videos.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notasmurf/pornhubpremium-api/HEAD/tests/pages/videos.test.js --------------------------------------------------------------------------------