forked from PaulSonOfLars/gotg_md2html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
54 lines (48 loc) · 1.07 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
package main
import (
"encoding/json"
"fmt"
"log"
"net/http"
"os"
"time"
"github.com/gorilla/mux"
)
type Frameit struct {
Type string `json:"type"`
Button string `json:"button"`
Text string `json:"text"`
}
func mdfunc(w http.ResponseWriter, r *http.Request) {
htmlText, btns := MD2HTMLButtonsV2(r.FormValue("rtext"))
formatedtrext := Frameit{
Type: "ok",
Button: fmt.Sprintf("%v", btns),
Text: htmlText,
}
if err := json.NewEncoder(w).Encode(formatedtrext); err != nil {
log.Print(err.Error())
}
}
func homePage(w http.ResponseWriter, _ *http.Request) {
if _, err := fmt.Fprint(w, "Ok!"); err != nil {
log.Println(err.Error())
}
}
func main() {
router := mux.NewRouter().StrictSlash(true)
port := os.Getenv("PORT")
if port == "" {
port = "9002"
}
server := &http.Server{
Addr: "0.0.0.0:" + port,
Handler: router,
ReadTimeout: 5 * time.Second,
WriteTimeout: 3 * time.Second,
}
router.HandleFunc("/", homePage)
router.HandleFunc("/get/", mdfunc).Methods("POST")
log.Println("Started API!")
log.Fatal(server.ListenAndServe())
}