2018-05-27 22:40:42 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
)
|
|
|
|
|
2018-07-24 14:46:02 +08:00
|
|
|
func apiRouterInit(router *mux.Router) error {
|
2018-05-27 22:40:42 +08:00
|
|
|
router.HandleFunc("/api/owner/new", ownerNewHandler).Methods("POST")
|
|
|
|
router.HandleFunc("/api/owner/confirm-hex", ownerConfirmHexHandler).Methods("GET")
|
|
|
|
router.HandleFunc("/api/owner/login", ownerLoginHandler).Methods("POST")
|
|
|
|
router.HandleFunc("/api/owner/send-reset-hex", ownerSendResetHexHandler).Methods("POST")
|
|
|
|
router.HandleFunc("/api/owner/reset-password", ownerResetPasswordHandler).Methods("POST")
|
|
|
|
router.HandleFunc("/api/owner/self", ownerSelfHandler).Methods("POST")
|
|
|
|
|
|
|
|
router.HandleFunc("/api/domain/new", domainNewHandler).Methods("POST")
|
2018-06-03 23:27:08 +08:00
|
|
|
router.HandleFunc("/api/domain/delete", domainDeleteHandler).Methods("POST")
|
2018-05-27 22:40:42 +08:00
|
|
|
router.HandleFunc("/api/domain/list", domainListHandler).Methods("POST")
|
|
|
|
router.HandleFunc("/api/domain/update", domainUpdateHandler).Methods("POST")
|
|
|
|
router.HandleFunc("/api/domain/moderator/new", domainModeratorNewHandler).Methods("POST")
|
|
|
|
router.HandleFunc("/api/domain/moderator/delete", domainModeratorDeleteHandler).Methods("POST")
|
2018-06-04 00:05:44 +08:00
|
|
|
router.HandleFunc("/api/domain/statistics", domainStatisticsHandler).Methods("POST")
|
2018-06-14 16:58:11 +08:00
|
|
|
router.HandleFunc("/api/domain/import/disqus", domainImportDisqusHandler).Methods("POST")
|
2019-01-31 15:06:11 +08:00
|
|
|
router.HandleFunc("/api/domain/export/begin", domainExportBeginHandler).Methods("POST")
|
|
|
|
router.HandleFunc("/api/domain/export/download", domainExportDownloadHandler).Methods("GET")
|
2018-05-27 22:40:42 +08:00
|
|
|
|
2018-06-20 11:29:55 +08:00
|
|
|
router.HandleFunc("/api/commenter/token/new", commenterTokenNewHandler).Methods("GET")
|
2018-06-11 01:15:56 +08:00
|
|
|
router.HandleFunc("/api/commenter/new", commenterNewHandler).Methods("POST")
|
|
|
|
router.HandleFunc("/api/commenter/login", commenterLoginHandler).Methods("POST")
|
2018-05-27 22:40:42 +08:00
|
|
|
router.HandleFunc("/api/commenter/self", commenterSelfHandler).Methods("POST")
|
2019-02-19 05:30:54 +08:00
|
|
|
|
|
|
|
router.HandleFunc("/api/email/get", emailGetHandler).Methods("POST")
|
|
|
|
router.HandleFunc("/api/email/update", emailUpdateHandler).Methods("POST")
|
2019-02-19 05:43:18 +08:00
|
|
|
router.HandleFunc("/api/email/moderate", emailModerateHandler).Methods("GET")
|
2018-05-27 22:40:42 +08:00
|
|
|
|
|
|
|
router.HandleFunc("/api/oauth/google/redirect", googleRedirectHandler).Methods("GET")
|
|
|
|
router.HandleFunc("/api/oauth/google/callback", googleCallbackHandler).Methods("GET")
|
|
|
|
|
2019-01-31 10:15:16 +08:00
|
|
|
router.HandleFunc("/api/oauth/github/redirect", githubRedirectHandler).Methods("GET")
|
|
|
|
router.HandleFunc("/api/oauth/github/callback", githubCallbackHandler).Methods("GET")
|
|
|
|
|
2019-02-23 10:23:24 +08:00
|
|
|
router.HandleFunc("/api/oauth/twitter/redirect", twitterRedirectHandler).Methods("GET")
|
|
|
|
router.HandleFunc("/api/oauth/twitter/callback", twitterCallbackHandler).Methods("GET")
|
|
|
|
|
2019-02-23 10:54:08 +08:00
|
|
|
router.HandleFunc("/api/oauth/gitlab/redirect", gitlabRedirectHandler).Methods("GET")
|
|
|
|
router.HandleFunc("/api/oauth/gitlab/callback", gitlabCallbackHandler).Methods("GET")
|
|
|
|
|
2018-05-27 22:40:42 +08:00
|
|
|
router.HandleFunc("/api/comment/new", commentNewHandler).Methods("POST")
|
|
|
|
router.HandleFunc("/api/comment/list", commentListHandler).Methods("POST")
|
2018-09-23 12:42:16 +08:00
|
|
|
router.HandleFunc("/api/comment/count", commentCountHandler).Methods("POST")
|
2018-05-27 22:40:42 +08:00
|
|
|
router.HandleFunc("/api/comment/vote", commentVoteHandler).Methods("POST")
|
|
|
|
router.HandleFunc("/api/comment/approve", commentApproveHandler).Methods("POST")
|
|
|
|
router.HandleFunc("/api/comment/delete", commentDeleteHandler).Methods("POST")
|
|
|
|
|
2018-07-05 13:06:52 +08:00
|
|
|
router.HandleFunc("/api/page/update", pageUpdateHandler).Methods("POST")
|
|
|
|
|
2018-05-27 22:40:42 +08:00
|
|
|
return nil
|
|
|
|
}
|