forked from Hazuki-san/osu-hanayo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
337 lines (276 loc) · 8.5 KB
/
main.go
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
package main
// about using johnniedoe/contrib/gzip:
// johnniedoe's fork fixes a critical issue for which .String resulted in
// an ERR_DECODING_FAILED. This is an actual pull request on the contrib
// repo, but apparently, gin is dead.
import (
"encoding/gob"
"fmt"
"time"
"github.com/fatih/structs"
"github.com/getsentry/raven-go"
"github.com/gin-gonic/contrib/sessions"
"github.com/gin-gonic/gin"
_ "github.com/go-sql-driver/mysql"
"github.com/jmoiron/sqlx"
"github.com/johnniedoe/contrib/gzip"
"github.com/thehowl/conf"
"github.com/thehowl/qsql"
"gopkg.in/mailgun/mailgun-go.v1"
"gopkg.in/redis.v5"
"zxq.co/ripple/agplwarning"
"zxq.co/ripple/hanayo/modules/btcaddress"
"zxq.co/ripple/hanayo/modules/btcconversions"
"zxq.co/ripple/hanayo/routers/oauth"
"zxq.co/ripple/hanayo/routers/pagemappings"
"zxq.co/ripple/hanayo/services"
"zxq.co/ripple/hanayo/services/cieca"
"zxq.co/ripple/schiavolib"
"zxq.co/x/rs"
)
var startTime = time.Now()
var (
config struct {
// Essential configuration that must be always checked for every environment.
ListenTo string `description:"ip:port from which to take requests."`
Unix bool `description:"Whether ListenTo is an unix socket."`
DSN string `description:"MySQL server DSN"`
RedisEnable bool
AvatarURL string
BaseURL string
API string
BanchoAPI string
CheesegullAPI string
APISecret string
Offline bool `description:"If this is true, files will be served from the local server instead of the CDN."`
MainRippleFolder string `description:"Folder where all the non-go projects are contained, such as old-frontend, lets, ci-system. Used for changelog."`
AvatarsFolder string `description:"location folder of avatars, used for placing the avatars from the avatar change page."`
CookieSecret string
RedisMaxConnections int
RedisNetwork string
RedisAddress string
RedisPassword string
DiscordServer string
BaseAPIPublic string
Production int `description:"This is a fake configuration value. All of the following from now on should only really be set in a production environment."`
MailgunDomain string
MailgunPrivateAPIKey string
MailgunPublicAPIKey string
MailgunFrom string
RecaptchaSite string
RecaptchaPrivate string
DiscordOAuthID string
DiscordOAuthSecret string
DonorBotURL string
DonorBotSecret string
CoinbaseAPIKey string
CoinbaseAPISecret string
SentryDSN string
IP_API string
}
configMap map[string]interface{}
db *sqlx.DB
qb *qsql.DB
mg mailgun.Mailgun
rd *redis.Client
)
// Services etc
var (
CSRF services.CSRF
)
func main() {
err := agplwarning.Warn("ripple", "Hanayo")
if err != nil {
fmt.Println(err)
}
fmt.Println("hanayo " + version)
err = conf.Load(&config, "hanayo.conf")
switch err {
case nil:
// carry on
case conf.ErrNoFile:
conf.Export(config, "hanayo.conf")
fmt.Println("The configuration file was not found. We created one for you.")
return
default:
panic(err)
}
var configDefaults = map[*string]string{
&config.ListenTo: ":45221",
&config.CookieSecret: rs.String(46),
&config.AvatarURL: "https://a.ripple.moe",
&config.BaseURL: "https://ripple.moe",
&config.BanchoAPI: "https://c.ripple.moe",
&config.CheesegullAPI: "https://storage.ripple.moe/api",
&config.API: "http://localhost:40001/api/v1/",
&config.APISecret: "Potato",
&config.IP_API: "https://ip.zxq.co",
&config.DiscordServer: "#",
&config.MainRippleFolder: "/home/ripple/ripple",
&config.MailgunFrom: `"Ripple" <[email protected]>`,
}
for key, value := range configDefaults {
if *key == "" {
*key = value
}
}
configMap = structs.Map(config)
// initialise db
db, err = sqlx.Open("mysql", config.DSN+"?parseTime=true")
if err != nil {
panic(err)
}
qb = qsql.New(db.DB)
if err != nil {
panic(err)
}
// initialise mailgun
mg = mailgun.NewMailgun(
config.MailgunDomain,
config.MailgunPrivateAPIKey,
config.MailgunPublicAPIKey,
)
// initialise CSRF service
CSRF = cieca.NewCSRF()
if gin.Mode() == gin.DebugMode {
fmt.Println("Development environment detected. Starting fsnotify on template folder...")
err := reloader()
if err != nil {
fmt.Println(err)
}
}
// initialise redis
rd = redis.NewClient(&redis.Options{
Addr: config.RedisAddress,
Password: config.RedisPassword,
})
// initialise oauth
setUpOauth()
// initialise btcaddress
btcaddress.Redis = rd
btcaddress.APIKey = config.CoinbaseAPIKey
btcaddress.APISecret = config.CoinbaseAPISecret
// initialise schiavo
schiavo.Prefix = "hanayo"
schiavo.Bunker.Send(fmt.Sprintf("STARTUATO, mode: %s", gin.Mode()))
// even if it's not release, we say that it's release
// so that gin doesn't spam
gin.SetMode(gin.ReleaseMode)
gobRegisters := []interface{}{
[]message{},
errorMessage{},
infoMessage{},
neutralMessage{},
warningMessage{},
successMessage{},
}
for _, el := range gobRegisters {
gob.Register(el)
}
fmt.Println("Importing templates...")
loadTemplates("")
fmt.Println("Setting up rate limiter...")
setUpLimiter()
fmt.Println("Exporting configuration...")
conf.Export(config, "hanayo.conf")
fmt.Println("Intialisation:", time.Since(startTime))
httpLoop()
}
func httpLoop() {
for {
e := generateEngine()
fmt.Println("Listening on", config.ListenTo)
if !startuato(e) {
break
}
}
}
func generateEngine() *gin.Engine {
fmt.Println("Starting session system...")
var store sessions.Store
if config.RedisMaxConnections != 0 {
var err error
store, err = sessions.NewRedisStore(
config.RedisMaxConnections,
config.RedisNetwork,
config.RedisAddress,
config.RedisPassword,
[]byte(config.CookieSecret),
)
if err != nil {
fmt.Println(err)
store = sessions.NewCookieStore([]byte(config.CookieSecret))
}
} else {
store = sessions.NewCookieStore([]byte(config.CookieSecret))
}
r := gin.Default()
// sentry
if config.SentryDSN != "" {
ravenClient, err := raven.New(config.SentryDSN)
if err != nil {
fmt.Println(err)
} else {
r.Use(Recovery(ravenClient, false))
}
}
r.Use(
gzip.Gzip(gzip.DefaultCompression),
pagemappings.CheckRedirect,
sessions.Sessions("session", store),
sessionInitializer(),
rateLimiter(false),
twoFALock,
)
r.Static("/static", "static")
r.StaticFile("/favicon.ico", "static/favicon.ico")
r.POST("/login", loginSubmit)
r.GET("/logout", logout)
r.GET("/register", register)
r.POST("/register", registerSubmit)
r.GET("/register/verify", verifyAccount)
r.GET("/register/welcome", welcome)
r.GET("/u/:user", userProfile)
r.GET("/b/:bid", beatmapInfo)
r.POST("/pwreset", passwordReset)
r.GET("/pwreset/continue", passwordResetContinue)
r.POST("/pwreset/continue", passwordResetContinueSubmit)
r.GET("/2fa_gateway", tfaGateway)
r.GET("/2fa_gateway/clear", clear2fa)
r.GET("/2fa_gateway/verify", verify2fa)
r.GET("/2fa_gateway/recover", recover2fa)
r.POST("/2fa_gateway/recover", recover2faSubmit)
r.POST("/irc/generate", ircGenToken)
r.GET("/settings/password", changePassword)
r.GET("/settings/authorized_applications", authorizedApplications)
r.POST("/settings/authorized_applications/revoke", revokeAuthorization)
r.POST("/settings/password", changePasswordSubmit)
r.POST("/settings/userpage/parse", parseBBCode)
r.POST("/settings/avatar", avatarSubmit)
r.POST("/settings/2fa/disable", disable2fa)
r.POST("/settings/2fa/totp", totpSetup)
r.GET("/settings/discord/finish", discordFinish)
r.POST("/settings/profbackground/:type", profBackground)
r.POST("/dev/tokens/create", createAPIToken)
r.POST("/dev/tokens/delete", deleteAPIToken)
r.POST("/dev/tokens/edit", editAPIToken)
r.GET("/dev/apps", getOAuthApplications)
r.GET("/dev/apps/edit", editOAuthApplication)
r.POST("/dev/apps/edit", editOAuthApplicationSubmit)
r.POST("/dev/apps/delete", deleteOAuthApplication)
r.GET("/oauth/authorize", oauth.Authorize)
r.POST("/oauth/authorize", oauth.Authorize)
r.GET("/oauth/token", oauth.Token)
r.POST("/oauth/token", oauth.Token)
r.GET("/donate/rates", btcconversions.GetRates)
r.Any("/blog/*url", blogRedirect)
r.GET("/help", func(c *gin.Context) {
c.Redirect(301, "https://support.ripple.moe")
})
loadSimplePages(r)
r.NoRoute(notFound)
return r
}
const alwaysRespondText = `Ooops! Looks like something went really wrong while trying to process your request.
Perhaps report this to a Ripple developer?
Retrying doing again what you were trying to do might work, too.`