package main import ( api "github.com/appleboy/gin-status-api" "github.com/fvbock/endless" "github.com/gin-gonic/gin" "log" "net/http" apns "github.com/sideshow/apns2" "github.com/sideshow/apns2/certificate" ) func AbortWithError(c *gin.Context, code int, message string) { c.JSON(code, gin.H{ "code": code, "message": message, }) c.Abort() } func rootHandler(c *gin.Context) { c.JSON(http.StatusOK, gin.H{ "text": "Welcome to golang push server.", }) } func pushHandler(c *gin.Context) { var form RequestPushNotification if err := c.BindJSON(&form); err != nil { log.Println(err) AbortWithError(c, http.StatusBadRequest, "Bad input request, please refer to README guide.") return } // process notification. pushNotification(form) c.JSON(http.StatusOK, gin.H{ "text": "Welcome to golang push server.", }) } func GetMainEngine() *gin.Engine { r := gin.New() // Global middleware r.Use(gin.Logger()) r.Use(gin.Recovery()) r.Use(VersionMiddleware()) r.GET(PushConf.Api.StatGoUri, api.StatusHandler) r.POST(PushConf.Api.PushUri, pushHandler) r.GET("/", rootHandler) return r } func main() { var err error // set default parameters. PushConf = BuildDefaultPushConf() // load user define config. PushConf, err = LoadConfYaml("config.yaml") if err != nil { log.Printf("Unable to load config file: '%v'", err) return } if PushConf.Ios.Enabled { CertificatePemIos, err = certificate.FromPemFile(PushConf.Ios.PemKeyPath, "") if err != nil { log.Println("Cert Error:", err) return } if PushConf.Ios.Production { ApnsClient = apns.NewClient(CertificatePemIos).Production() } else { ApnsClient = apns.NewClient(CertificatePemIos).Development() } } endless.ListenAndServe(":"+PushConf.Core.Port, GetMainEngine()) }