Oppaitime's version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.template 10.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. <?php
  2. if (PHP_VERSION_ID < 70000) {
  3. die("Gazelle requires PHP 7.0 or later to function properly");
  4. }
  5. //date_default_timezone_set('EST');
  6. // Main settings
  7. define('SITE_NAME', 'Oppaitime'); //The name of your site
  8. define('SITE_DOMAIN', 'oppaiti.me'); //The FQDN of your site
  9. define('SITE_IP', '8.8.8.8'); //The IP address by which your site can be publicly accessed
  10. define('SERVER_ROOT', '/var/www'); //The root of the server, used for includes, purpose is to shorten the path string
  11. // Tracker urls to be added to torrent files ala bittorrent.org/beps/bep_0012.html
  12. define('ANNOUNCE_URLS', [['https://tracker.'.SSL_SITE_URL.':34001',
  13. 'https://tracker2.'.SSL_SITE_URL.':34001',
  14. 'https://tracker3.'.SSL_SITE_URL.':34001',
  15. 'https://tracker4.'.SSL_SITE_URL.':34001']] );
  16. // Don't hard code API keys for services
  17. define('API_KEYS', ['ANIDB' => 'AAAAAAAAAAAAAAAA']);
  18. // Allows you to run static content off another server. Default is usually what you want.
  19. define('STATIC_SERVER', 'static/');
  20. // Keys
  21. define('ENCKEY', 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); //Random key. The key for encryption
  22. define('SCHEDULE_KEY', 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); // Random key. This key must be the argument to schedule.php for the schedule to work.
  23. define('RSS_HASH', 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); //Random key. Used for generating unique RSS auth key.
  24. // MySQL details
  25. define('SQLHOST', 'localhost'); //The MySQL host ip/fqdn
  26. define('SQLLOGIN', 'root');//The MySQL login
  27. define('SQLPASS', 'toor'); //The MySQL password
  28. define('SQLDB', 'gazelle'); //The MySQL database to use
  29. define('SQLPORT', 3306); //The MySQL port to connect on
  30. define('SQLSOCK', '/var/run/mysqld/mysqld.sock');
  31. // Memcached details
  32. define('MEMCACHED_SERVERS',
  33. [['host' => 'unix:///var/run/memcached.sock', 'port' => 0, 'buckets' => 1]]
  34. );
  35. // Sphinx details
  36. define('SPHINX_HOST', 'localhost');
  37. define('SPHINX_PORT', 9312);
  38. define('SPHINXQL_HOST', '127.0.0.1');
  39. define('SPHINXQL_PORT', 9306);
  40. define('SPHINXQL_SOCK', false);
  41. define('SPHINX_MAX_MATCHES', 1000); // Must be <= the server's max_matches variable (default 1000)
  42. define('SPHINX_INDEX', 'torrents');
  43. // Ocelot details
  44. define('TRACKER_HOST', '8.8.8.8');
  45. define('TRACKER_PORT', 34000);
  46. define('TRACKER_SECRET', 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); // Must be 32 characters and match site_password in Ocelot's config.cpp
  47. define('TRACKER_REPORTKEY', 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); // Must be 32 characters and match report_password in Ocelot's config.cpp
  48. // Site settings
  49. define('DEBUG_MODE', false); //Set to false if you dont want everyone to see debug information, can be overriden with 'site_debug'
  50. define('DEBUG_WARNINGS', true); //Set to true if you want to see PHP warnings in the footer
  51. define('OPEN_REGISTRATION', false); //Set to false to disable open regirstration, true to allow anyone to register
  52. define('USER_LIMIT', 0); //The maximum number of users the site can have, 0 for no limit
  53. define('STARTING_INVITES', 0); //# of invites to give to newly registered users
  54. define('BLOCK_TOR', false); //Set to true to block Tor users
  55. define('BLOCK_OPERA_MINI', false); //Set to true to block Opera Mini proxy
  56. define('DONOR_INVITES', 2);
  57. if (!defined('FEATURE_EMAIL_REENABLE')) {
  58. define('FEATURE_EMAIL_REENABLE', true);
  59. }
  60. // User class IDs needed for automatic promotions. Found in the 'permissions' table
  61. // Name of class Class ID (NOT level)
  62. define('ADMIN', '1');
  63. define('USER', '2');
  64. define('MEMBER', '3');
  65. define('POWER', '4');
  66. define('ELITE', '5');
  67. define('VIP', '21');
  68. define('TORRENT_MASTER','23');
  69. define('LEGEND', '8');
  70. define('MOD', '11');
  71. define('SYSOP', '15');
  72. define('ARTIST', '19');
  73. define('DONOR', '20');
  74. define('POWER_TM', '24');
  75. define('FLS_TEAM', '9000');
  76. define('FORUM_MOD', '9001');
  77. // Forums
  78. define('STAFF_FORUM', 7);
  79. define('DONOR_FORUM', 9);
  80. define('TRASH_FORUM_ID', 4);
  81. define('ANNOUNCEMENT_FORUM_ID', 10);
  82. // Pagination
  83. define('TORRENT_COMMENTS_PER_PAGE', 10);
  84. define('POSTS_PER_PAGE', 25);
  85. define('TOPICS_PER_PAGE', 50);
  86. define('TORRENTS_PER_PAGE', 50);
  87. define('REQUESTS_PER_PAGE', 25);
  88. define('MESSAGES_PER_PAGE', 25);
  89. define('LOG_ENTRIES_PER_PAGE', 50);
  90. // Cache catalogues
  91. define('THREAD_CATALOGUE', 500); // Limit to THREAD_CATALOGUE posts per cache key.
  92. // IRC settings
  93. define('BOT_NICK', 'bot');
  94. define('BOT_SERVER', 'irc.'.SSL_SITE_URL); // IRC server address. Used for onsite chat tool.
  95. define('BOT_PORT', 6667);
  96. define('BOT_CHAN', '#bot');
  97. define('BOT_ANNOUNCE_CHAN', '#announce');
  98. define('BOT_REQUEST_CHAN', '#requests');
  99. define('BOT_STAFF_CHAN', '#staff');
  100. define('BOT_DISABLED_CHAN', '#disabled'); // Channel to refer disabled users to.
  101. define('BOT_HELP_CHAN', '#help');
  102. define('BOT_DEBUG_CHAN', '#debup');
  103. define('BOT_REPORT_CHAN', '#report');
  104. define('BOT_NICKSERV_PASS', '');
  105. define('BOT_INVITE_CHAN', '#invites'); // Channel for non-members seeking an interview
  106. define('BOT_INTERVIEW_CHAN', '#interview'); // Channel for the interviews
  107. define('BOT_INTERVIEW_NUM', 5);
  108. define('BOT_INTERVIEW_STAFF', '#interview-staff'); // Channel for the interviewers
  109. define('SOCKET_LISTEN_PORT', 51010);
  110. define('SOCKET_LISTEN_ADDRESS', '8.8.8.8');
  111. define('ADMIN_CHAN', '#admin');
  112. define('LAB_CHAN', '#lab');
  113. define('STATUS_CHAN', '#status');
  114. // Miscellaneous values
  115. define('RANK_ONE_COST', 5);
  116. define('RANK_TWO_COST', 10);
  117. define('RANK_THREE_COST', 15);
  118. define('RANK_FOUR_COST', 20);
  119. define('RANK_FIVE_COST', 30);
  120. define('MAX_RANK', 6);
  121. define('MAX_EXTRA_RANK', 8);
  122. define('DONOR_FORUM_RANK', 6);
  123. define('MAX_SPECIAL_RANK', 3);
  124. $ForumsRevealVoters = array();
  125. $ForumsDoublePost = array();
  126. $Categories = array('Movies', 'Anime', 'Manga', 'Games', 'Other');
  127. $GroupedCategories = $Categories;
  128. $CategoryIcons = array('music.png', 'apps.png', 'ebook.png', 'audiobook.png', 'elearning.png', 'comedy.png', 'comics.png');
  129. $Media = array('TV', 'DVD', 'Bluray', 'HD DVD', 'VHS', 'VCD', 'LD', 'Web');
  130. $MediaManga = array('Scan', 'Web');
  131. $Platform = array('Windows', 'OS X', 'Linux', 'BSD', 'Flash', 'Java', 'Android', 'iOS');
  132. $Containers = array('AVI', 'MKV', 'MP4', 'OGM', 'WMV', 'ISO', 'VOB IFO', 'TS', 'M2TS');
  133. $ContainersGames = array('ISO', 'BIN-CUE', 'Installer', 'Loose');
  134. $Codecs = array('h264', '10-bit h264', 'XviD', 'DivX', 'WMV', 'DVD5', 'DVD9', 'HEVC', 'MPEG-2');
  135. $Resolutions = array('SD', '480p', '720p', '1080i', '1080p', '4K', 'Other');
  136. $AudioFormats = array('MP3', 'OGG', 'OGG 5.1', 'AAC', 'AAC 5.1', 'AC3', 'AC3 5.1', 'DTS 2.0', 'DTS 5.1', 'DTS-ES 6.1', 'FLAC 2.0', 'FLAC 5.1', 'FLAC 6.1', 'PCM 2.0', 'PCM 5.1', 'PCM 6.1', 'WMA', 'Real Audio', 'DTS-HD', 'DTS-HD MA');
  137. $Subbing = array('Softsubs', 'Hardsubs', 'RAW');
  138. $Languages = array('English', 'Japanese', 'Dual Language');
  139. $Archives = array('7z', 'zip', 'rar');
  140. $ArchivesManga = array('cbz', 'cbr', 'cb7');
  141. $Formats = array('MP3', 'FLAC', 'Ogg Vorbis', 'AAC', 'AC3', 'DTS');
  142. $Bitrates = array('192', 'APS (VBR)', 'V2 (VBR)', 'V1 (VBR)', '256', 'APX (VBR)', 'V0 (VBR)', 'q8.x (VBR)', '320', 'Lossless', '24bit Lossless', 'Other');
  143. $CollageCats = array(0=>'Personal', 1=>'Theme', 2=>'Staff picks', 3=>'Artists');
  144. $ReleaseTypes = array(1=>'Album', 3=>'Soundtrack', 5=>'EP', 6=>'Anthology', 7=>'Compilation', 9=>'Single', 11=>'Live album', 13=>'Remix', 14=>'Bootleg', 15=>'Interview', 16=>'Mixtape', 21=>'Unknown');
  145. //$ForumCats = array(1=>'Site', 5=>'Community', 10=>'Help', 8=>'Music', 20=>'Trash'); //No longer needed
  146. $ZIPGroups = array(
  147. 0 => 'MP3 (VBR) - High Quality',
  148. 1 => 'MP3 (VBR) - Low Quality',
  149. 2 => 'MP3 (CBR)',
  150. 3 => 'FLAC - Lossless',
  151. 4 => 'Others'
  152. );
  153. //3D array of attributes, OptionGroup, OptionNumber, Name
  154. $ZIPOptions = array(
  155. '00' => array(0, 0, 'V0'),
  156. '01' => array(0, 1, 'APX'),
  157. '02' => array(0, 2, '256'),
  158. '03' => array(0, 3, 'V1'),
  159. '10' => array(1, 0, '224'),
  160. '11' => array(1, 1, 'V2'),
  161. '12' => array(1, 2, 'APS'),
  162. '13' => array(1, 3, '192'),
  163. '20' => array(2, 0, '320'),
  164. '21' => array(2, 1, '256'),
  165. '22' => array(2, 2, '224'),
  166. '23' => array(2, 3, '192'),
  167. '30' => array(3, 0, 'FLAC / 24bit / Vinyl'),
  168. '31' => array(3, 1, 'FLAC / 24bit / DVD'),
  169. '32' => array(3, 2, 'FLAC / 24bit / SACD'),
  170. '33' => array(3, 3, 'FLAC / Log (100) / Cue'),
  171. '34' => array(3, 4, 'FLAC / Log (100)'),
  172. '35' => array(3, 5, 'FLAC / Log'),
  173. '36' => array(3, 6, 'FLAC'),
  174. '40' => array(4, 0, 'DTS'),
  175. '41' => array(4, 1, 'Ogg Vorbis'),
  176. '42' => array(4, 2, 'AAC - 320'),
  177. '43' => array(4, 3, 'AAC - 256'),
  178. '44' => array(4, 4, 'AAC - q5.5'),
  179. '45' => array(4, 5, 'AAC - q5'),
  180. '46' => array(4, 6, 'AAC - 192')
  181. );
  182. // Ratio requirements, in descending order
  183. // Columns: Download amount, required ratio, grace period
  184. $RatioRequirements = array(
  185. //array(0, 0, date('Y-m-d H:i:s'))
  186. array(200 * 1024 * 1024 * 1024, 0.60, date('Y-m-d H:i:s')),
  187. array(160 * 1024 * 1024 * 1024, 0.60, date('Y-m-d H:i:s')),
  188. array(120 * 1024 * 1024 * 1024, 0.50, date('Y-m-d H:i:s')),
  189. array(100 * 1024 * 1024 * 1024, 0.40, date('Y-m-d H:i:s')),
  190. array(80 * 1024 * 1024 * 1024, 0.30, date('Y-m-d H:i:s')),
  191. array(60 * 1024 * 1024 * 1024, 0.20, date('Y-m-d H:i:s')),
  192. array(40 * 1024 * 1024 * 1024, 0.15, date('Y-m-d H:i:s')),
  193. array(20 * 1024 * 1024 * 1024, 0.10, date('Y-m-d H:i:s')),
  194. array(10 * 1024 * 1024 * 1024, 0.05, date('Y-m-d H:i:s', time() - (60 * 60 * 24 * 14)))
  195. );
  196. //Captcha fonts should be located in /classes/fonts
  197. $CaptchaFonts = array(
  198. 'ARIBLK.TTF',
  199. 'IMPACT.TTF',
  200. 'TREBUC.TTF',
  201. 'TREBUCBD.TTF',
  202. 'TREBUCBI.TTF',
  203. 'TREBUCIT.TTF',
  204. 'VERDANA.TTF',
  205. 'VERDANAB.TTF',
  206. 'VERDANAI.TTF',
  207. 'VERDANAZ.TTF');
  208. //Captcha images should be located in /captcha
  209. $CaptchaBGs = array(
  210. 'captcha1.png',
  211. 'captcha2.png',
  212. 'captcha3.png',
  213. 'captcha4.png',
  214. 'captcha5.png',
  215. 'captcha6.png',
  216. 'captcha7.png',
  217. 'captcha8.png',
  218. 'captcha9.png');
  219. // Special characters, and what they should be converted to
  220. // Used for torrent searching
  221. $SpecialChars = array(
  222. '&' => 'and'
  223. );
  224. // God I wish I didn't have to do this but I just don't care anymore.
  225. $AutomatedBadgeIDs = array(
  226. 'DL' => array(
  227. '8' => 10,
  228. '16' => 11,
  229. '32' => 12,
  230. '64' => 13,
  231. '128' => 14,
  232. '256' => 15,
  233. '512' => 16,
  234. '1024' => 17,
  235. '2048' => 18
  236. )
  237. );
  238. ?>