forked from HDInnovations/UNIT3D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathother.php
284 lines (254 loc) · 8.52 KB
/
other.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
<?php
declare(strict_types=1);
/**
* NOTICE OF LICENSE.
*
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
* The details is bundled with this project in the file LICENSE.txt.
*
* @project UNIT3D Community Edition
*
* @author HDVinnie <hdinnovations@protonmail.com>
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
*/
return [
/*
|--------------------------------------------------------------------------
| Site title
|--------------------------------------------------------------------------
|
| Title of Site
|
*/
'title' => 'UNIT3D',
/*
|--------------------------------------------------------------------------
| Site SubTitle
|--------------------------------------------------------------------------
|
| SubTitle
|
*/
'subTitle' => 'Built On Laravel',
/*
|--------------------------------------------------------------------------
| Site email
|--------------------------------------------------------------------------
|
| Email address to send emails
|
*/
'email' => env('DEFAULT_OWNER_EMAIL', 'unit3d@none.com'),
/*
|--------------------------------------------------------------------------
| Meta description
|--------------------------------------------------------------------------
|
| Default meta description content
|
*/
'meta_description' => 'Built On Laravel',
/*
|--------------------------------------------------------------------------
| Site Birthdate
|--------------------------------------------------------------------------
|
| Date Site Was Born
|
*/
'birthdate' => 'December 30th 2017',
/*
|--------------------------------------------------------------------------
| Freeleech State
|--------------------------------------------------------------------------
|
| Global Freeleech
|
*/
'freeleech' => false,
'freeleech_until' => '12/23/2017 3:00 PM EST',
/*
|--------------------------------------------------------------------------
| Double Upload State
|--------------------------------------------------------------------------
|
| Global Double Upload
|
*/
'doubleup' => false,
/*
|--------------------------------------------------------------------------
| Refund Torrent Download
|--------------------------------------------------------------------------
|
| Global Refund Download
|
*/
'refundable' => false,
/*
|--------------------------------------------------------------------------
| Min Ratio
|--------------------------------------------------------------------------
|
| Minimum Ratio To Download
|
*/
'ratio' => 0.4,
/*
|--------------------------------------------------------------------------
| Invite only
|--------------------------------------------------------------------------
|
| Invite System On/Off (Open Reg / Closed)
| Expire time in days
|
| Restricted mode for invites. If set to true, invites will be restricted
| Exempt these groups from the invite restrictions
*/
'invite-only' => true,
'invite_expire' => 14,
'invites_restriced' => false,
'invite_groups' => [
'Administrator',
'Owner',
],
'max_unused_user_invites' => 1,
/*
|--------------------------------------------------------------------------
| Default Users Stats
|--------------------------------------------------------------------------
|
| This will be the upload and download given to new members. (In Bytes!)
| Default: 50GiB Upload and 1GiB Download
*/
'default_upload' => '53687091200',
'default_download' => '1073741824',
/*
|--------------------------------------------------------------------------
| Default Site Style
|--------------------------------------------------------------------------
| 0 = Classic Light Theme
| 1 = Galactic Theme
| 2 = Dark Blue Theme
| 3 = Dark Green Theme
| 4 = Dark Pink Theme
| 5 = Dark Purple Theme
| 6 = Dark Red Theme
| 7 = Dark Teal Theme
| 8 = Dark Yellow Theme
| 9 = Cosmic Void
| 10 = Nord
| 11 = Revel
| 12 = Material Design v3 Light
*/
'default_style' => 12,
/*
|--------------------------------------------------------------------------
| Default Font Awesome Style
|--------------------------------------------------------------------------
| fas = Solid
| far = Regular
| fal = Light
*/
'font-awesome' => 'fas',
/*
|--------------------------------------------------------------------------
| Application Signups
|--------------------------------------------------------------------------
| True/1 = Enabled
| False/0 = Disabled
*/
'application_signups' => false,
/*
|--------------------------------------------------------------------------
| Rules Page URL
|--------------------------------------------------------------------------
| Example: 1
*/
'rules_url' => env('APP_URL').'/pages/1',
/*
|--------------------------------------------------------------------------
| FAQ Page URL
|--------------------------------------------------------------------------
| Example: 2
*/
'faq_url' => env('APP_URL').'/pages/2',
/*
|--------------------------------------------------------------------------
| Upload Guide Page URL For Upload Page
|--------------------------------------------------------------------------
| Example: 4
*/
'upload-guide_url' => env('APP_URL').'/pages/4',
/*
|--------------------------------------------------------------------------
| Hide Staff Area Forum Posts From Chat
|--------------------------------------------------------------------------
| 1 = Enabled
| 0 = Disabled
| If enabled, Staff members get notifications instead of posting being announced in chat.
*/
'staff-forum-notify' => '0',
/*
|--------------------------------------------------------------------------
| Staff Forum Id
|--------------------------------------------------------------------------
| Example: 2
| The ID value of staff forum area. Should be the main / parent ID.
*/
'staff-forum-id' => '',
/*
|--------------------------------------------------------------------------
| Thanks system
|--------------------------------------------------------------------------
| Allows users to press a button to thank the uploader of a torrent.
*/
'thanks-system' => [
/*
|--------------------------------------------------------------------------
| Enable the thanks system
|--------------------------------------------------------------------------
| True = Enabled
| False = Disabled
*/
'is-enabled' => true,
],
/*
|--------------------------------------------------------------------------
| Mail
|--------------------------------------------------------------------------
| Configures outbound email rate limiting.
*/
'mail' => [
/*
|--------------------------------------------------------------------------
| The number of outbound emails allowed every `mail.every` seconds.
|--------------------------------------------------------------------------
| Example: 1
*/
'allow' => 1,
/*
|--------------------------------------------------------------------------
| The number of seconds between every batch of `mail.allow` outbound emails.
|--------------------------------------------------------------------------
| Example: 5
*/
'every' => 5,
],
/*
|--------------------------------------------------------------------------
| BON
|--------------------------------------------------------------------------
| Configures user bon transactions.
*/
'bon' => [
/*
|--------------------------------------------------------------------------
| The maximum allowed account buffer when buying upload.
|--------------------------------------------------------------------------
| null = Disabled
| Example : 10 * 1024 * 1024 * 1024 * 1024
*/
'max-buffer-to-buy-upload' => null,
],
];