├── .babelrc ├── .gitattributes ├── .gitignore ├── .idea ├── misc.xml ├── modules.xml ├── ultimate-porn-space.iml ├── vcs.xml └── workspace.xml ├── README.md ├── package.json ├── public ├── css │ └── style.css ├── images │ └── error.jpg ├── js │ └── helper.js └── videos │ └── porn1.mp4 ├── server.js ├── server ├── db │ └── mongoose.js ├── models │ └── video.js └── routes │ ├── actions.js │ ├── basic.js │ ├── pornstar.js │ ├── tag.js │ └── top.js └── views ├── about.hbs ├── error.hbs ├── favorites.hbs ├── index.hbs ├── partials ├── _deletebutton.hbs ├── _footer.hbs ├── _generalcss.hbs ├── _generalscripts.hbs ├── _navbar.hbs ├── _pagination.hbs ├── _savebutton.hbs └── _top.hbs ├── star.hbs ├── stars.hbs ├── tag.hbs ├── tags.hbs └── video.hbs /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | 'presets': ['env'] 3 | } -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * linguist-vendored 2 | *.js linguist-vendored=false -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | modify.txt 4 | /*.env 5 | npm-debug.log 6 | .DS_Store -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/ultimate-porn-space.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 180 | 181 | 203 | 204 | 205 | 206 | 207 | true 208 | DEFINITION_ORDER 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 3 | 4 | -------------------------------------------------------------------------------- /views/partials/_footer.hbs: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 | © thedirtydeveloper 2018, All Rights Reserved (or do whatever you want with this) 6 |
7 |
8 |
9 |
-------------------------------------------------------------------------------- /views/partials/_generalcss.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/partials/_generalscripts.hbs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /views/partials/_navbar.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/partials/_pagination.hbs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /views/partials/_savebutton.hbs: -------------------------------------------------------------------------------- 1 | Favorite -------------------------------------------------------------------------------- /views/partials/_top.hbs: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |

Help us out, please give us some feedback and/or criticism

5 | 6 |
7 |
8 |
9 |
10 | Follow @TheDirtyDeveloper  11 | Star 12 |
13 |
14 |
15 |
-------------------------------------------------------------------------------- /views/star.hbs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Pornify 6 | 7 | 8 | {{> _generalcss}} 9 | 10 | 11 |
12 |
13 | {{> _navbar}} 14 |
15 |
16 |
17 |
18 | {{> _top}} 19 |
20 |

{{pornstar_d}}

21 |
22 |
23 | {{#each results}} 24 |
25 |
26 | 27 |
28 |
{{video.title}}
29 |

Views: {{video.views}}
Duration: {{video.duration}}
Rating: {{video.rating}}

30 |
31 |
32 | star 33 |
34 |
35 |
36 |
37 | {{> _savebutton}} 38 |
39 |
40 |
41 |
42 |
43 | {{/each}} 44 |
45 |
46 |
47 | {{> _pagination}} 48 |
49 |
50 |
51 | 52 | 53 | 54 | {{> _generalscripts}} 55 | 56 | -------------------------------------------------------------------------------- /views/stars.hbs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Ultimate Porn Space 6 | 7 | 8 | {{> _generalcss}} 9 | 10 | 11 |
12 |
13 | {{> _navbar}} 14 |
15 |
16 |
17 |
18 | {{> _top}} 19 |
20 |

Pornstars 💋

21 |

Search for videos by their actresses.

22 |
23 |
24 | {{#each pornstars}} 25 |
26 |
27 | 28 |
29 |
{{star}}
30 |
31 |
32 | More videos 33 |
34 |
35 |
36 |
37 |
38 | {{/each}} 39 |
40 |
41 |
42 | {{> _pagination}} 43 |
44 |
45 |
46 | 47 | 48 | 49 | {{> _generalscripts}} 50 | 51 | -------------------------------------------------------------------------------- /views/tag.hbs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Ultimate Porn Space 6 | 7 | 8 | {{> _generalcss}} 9 | 10 | 11 |
12 |
13 | {{> _navbar}} 14 |
15 |
16 |
17 |
18 | {{> _top}} 19 |
20 |

{{tag}}

21 |
22 |
23 | {{#each results}} 24 |
25 |
26 | 27 |
28 |
{{video.title}}
29 |

Views: {{video.views}}
Duration: {{video.duration}}
Rating: {{video.rating}}

30 |
31 |
32 | Watch 33 |
34 |
35 |
36 |
37 | {{> _savebutton}} 38 |
39 |
40 |
41 |
42 |
43 | {{/each}} 44 |
45 |
46 |
47 | {{> _pagination}} 48 |
49 |
50 |
51 | 52 | 53 | 54 | {{> _generalscripts}} 55 | 56 | -------------------------------------------------------------------------------- /views/tags.hbs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Ultimate Porn Space 6 | 7 | 8 | {{> _generalcss}} 9 | 10 | 11 |
12 |
13 | {{> _navbar}} 14 |
15 |
16 |
17 |
18 | {{> _top}} 19 |
20 |

Categories 💋

21 |

Search for videos by their category.

22 |
23 |
24 |

Popular tags (Expand):  25 | {{#each tags}} 26 | {{tag.tag_name}} / 27 | {{/each}} 28 |

29 |
30 |
31 |
32 | {{> _pagination}} 33 |
34 |
35 |
36 | 37 | 38 | 39 | {{> _generalscripts}} 40 | 41 | -------------------------------------------------------------------------------- /views/video.hbs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Ultimate Porn Space 6 | 7 | 8 | {{> _generalcss}} 9 | 10 | 11 |
12 |
13 | {{> _navbar}} 14 |
15 |
16 |
17 |
18 | {{> _top}} 19 |
20 |
21 |
22 | 23 |
24 |
25 |

{{result.title}}

26 |

Duration: {{result.duration}} | Rates: {{result.ratings}} | Views: {{result.views}}

27 | {{!--

Tags: {{result.tags}}

--}} 28 |
29 |
30 |
31 |
32 |
33 | {{> _savebutton}} 34 |
35 |
36 |
37 | 38 | 39 | 40 | {{> _generalscripts}} 41 | 42 | --------------------------------------------------------------------------------