init-a_router-func.go 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. package routers
  2. import (
  3. "bytes"
  4. "encoding/json"
  5. "errors"
  6. "io/ioutil"
  7. controllers_func "kkscrap-go/controllers/func"
  8. controllers_scraper "kkscrap-go/controllers/scraper"
  9. "kkscrap-go/locals"
  10. models_table "kkscrap-go/models/table"
  11. "github.com/dabory/abango-rest"
  12. e "github.com/dabory/abango-rest/etc"
  13. "github.com/labstack/echo"
  14. "github.com/labstack/echo/middleware"
  15. )
  16. type Route struct {
  17. Method []string
  18. Path string
  19. Handler echo.HandlerFunc
  20. }
  21. var routes []Route
  22. func AddRoute(route Route) {
  23. routes = append(routes, route)
  24. }
  25. func RestRouterInit(ask *abango.AbangoAsk) {
  26. //main.go 에서는 XConfig 값을 받아 올수 없으므로 여기서 모든걸 세팅한다.
  27. c := echo.New()
  28. // c.Pre(middleware.BodyDump(func(c echo.Context, reqBody, resBody []byte) {
  29. c.Use(middleware.CORSWithConfig(middleware.CORSConfig{
  30. AllowOrigins: []string{"*"},
  31. // AllowOrigins: []string{"http://single.daboryhost.com", "http://fit-vac.com",
  32. AllowHeaders: []string{echo.HeaderOrigin, echo.HeaderContentType, echo.HeaderAccept},
  33. }))
  34. c.Pre(func(next echo.HandlerFunc) echo.HandlerFunc {
  35. return func(c echo.Context) error {
  36. r := c.Request()
  37. uri := r.URL.Path
  38. var l models_table.DbtLogAccess //변수재사용을 위하여, 실제 로그 기록은 소스 맨 아래에서 AddaRow함.
  39. l.CreatedOn = e.GetNowUnix()
  40. l.FrontIp = c.RealIP()
  41. l.Url = uri
  42. l.FrontHost = r.Header.Get("FrontendHost")
  43. l.RemoteIp = r.Header.Get("RemoteIp")
  44. l.Referer = r.Header.Get("Referer")
  45. e.OkLog(".")
  46. e.OkLog("Start >> " + l.Url + " FROM (" + l.FrontIp + ") " + l.FrontHost + " <- " + l.RemoteIp)
  47. bodyBytes, err := ioutil.ReadAll(r.Body)
  48. if err == nil { // Remove when production completes
  49. e.OkLog("Requested Json: " + string(bodyBytes))
  50. r.Body = ioutil.NopCloser(bytes.NewBuffer(bodyBytes)) // This leads ReadCloser rewinded
  51. }
  52. // 미들웨어에서 receiver 받은 것을 echo.Context 로 넘겨줌.
  53. var abg abango.Controller
  54. // var err error
  55. if uri != "/gate-token-get" { // 미리 GateToken이 있는지 확인함.
  56. abg.GateToken = r.Header.Get("GateToken")
  57. if status, msg := abg.Init(); status != 200 {
  58. return c.String(status, msg)
  59. }
  60. if err := CheckAppPerm(&abg, uri); err != nil { //SsoSubId로 들어온 App 계정체크
  61. return c.String(508, "App Permission Denied: "+err.Error())
  62. }
  63. }
  64. if uri == "/gate-token-get" { // gate-token-test 는 아웃풋없는 test 이므로 여기 없음.
  65. var v controllers_func.GateTokenGetReq
  66. err = json.NewDecoder(r.Body).Decode(&v)
  67. c.Set("receiver", v)
  68. } else if uri == "/gate-token-test" {
  69. var v controllers_func.GateTokenTestReq
  70. err = json.NewDecoder(r.Body).Decode(&v)
  71. c.Set("receiver", v)
  72. } else if uri == "/item-url-scrap" {
  73. var v controllers_scraper.ItemUrlScrapReq
  74. err = json.NewDecoder(r.Body).Decode(&v)
  75. c.Set("receiver", v)
  76. } else { //!!주의 긴 string이 먼저나오게 지정할 것
  77. if locals.HasPickActPage(uri, "dummydummy") {
  78. } else {
  79. return c.String(709, e.LogStr("ewgvdafewwa", "Request Function Not Found in Middleware for "+uri))
  80. }
  81. }
  82. if err != nil { // error 처리를 반복하지 않고 하나로 처리
  83. return c.String(800, e.JsonFormatErr("wevzxdfarfawe", uri)+" "+err.Error())
  84. }
  85. // if uri[len(uri)-4:] == "-act" {
  86. // var mapped map[string]interface{}
  87. // // id 번호 구함.
  88. // inxId := bytes.Index(bodyBytes, []byte("\"Id\""))
  89. // inxIdStart := 1 + inxId + bytes.Index(bodyBytes[inxId:], []byte(":"))
  90. // inxIdEnd := inxIdStart + bytes.Index(bodyBytes[inxIdStart:], []byte(","))
  91. // if inxIdStart > inxIdEnd { //Delete 는 { "Id": -152 } 형태이므로 , 가 없다.
  92. // inxIdEnd = inxIdStart + bytes.Index(bodyBytes[inxIdStart:], []byte("}"))
  93. // }
  94. // // fmt.Println("inxIdStart2:", inxIdStart)
  95. // // fmt.Println("inxIdEnd2", inxIdEnd)
  96. // idChar := string(bodyBytes[inxIdStart:inxIdEnd])
  97. // if idChar[len(idChar)-1:] == "}" { //{"Id": -1541}, 다중 레코드의 경우도 처리
  98. // idChar = idChar[:len(idChar)-1]
  99. // }
  100. // strId := strings.TrimSpace(idChar)
  101. // intId, err := strconv.Atoi(strId)
  102. // // fmt.Println("strId=", strId)
  103. // if err != nil { // Id 가 정수가 아니면 치명적에러 이다. // ** 입력,수정,삭제를 복합적으로 한번에 request하는 것은 처리 안됨.
  104. // return c.String(800, e.JsonFormatErr("0qjhoysaee", "Id value is not a integer "+err.Error()))
  105. // }
  106. // if intId > 0 { //id > 0 경우는 update인 경우만 처리한다.
  107. // inxPage := bytes.Index(bodyBytes, []byte("\"Page\""))
  108. // inxCoreStart := inxPage + bytes.Index(bodyBytes[inxPage:], []byte("{"))
  109. // //Json 필드를 찾기 Skip 하기 위한 부분인데 만약 Json Field가 2개이상이면 For문으로 업그레이드 필요.
  110. // // 현재는 setup-act 와 eyetest-act의 경우를 처리함.
  111. // inxCoreJson := bytes.Index(bodyBytes, []byte("}\"")) //Json필드의 마지막은 이렇게 저장된다.
  112. // inxCoreEnd := 0
  113. // if inxCoreJson <= inxCoreStart { //Json 필드 없는 경우
  114. // inxCoreEnd = 1 + bytes.Index(bodyBytes, []byte("}"))
  115. // } else { //Json 필드 있는 경우
  116. // inxCoreJson = 1 + inxCoreJson
  117. // inxCoreEnd = 1 + inxCoreJson + bytes.Index(bodyBytes[inxCoreJson:], []byte("}"))
  118. // }
  119. // // fmt.Println("core:", string(bodyBytes[inxCoreStart:inxCoreEnd]))
  120. // if err := json.Unmarshal(bodyBytes[inxCoreStart:inxCoreEnd], &mapped); err != nil {
  121. // return c.String(800, e.JsonFormatErr("903uous09ur", uri))
  122. // }
  123. // update := ""
  124. // for fld := range mapped {
  125. // update += e.SnakeString(fld) + ","
  126. // }
  127. // abg.UpdateFieldList = update[0 : len(update)-1] //마지막 , 하니떼고
  128. // // fmt.Println("UpdateFieldList:", abg.UpdateFieldList)
  129. // }
  130. // }
  131. // }
  132. // c.Set("abango", abg) // 미들웨어에서 y.Db를 접속한 후 echo.Context 로 넘겨줌.
  133. //Log 기록 _setup반영요
  134. // if abg.GateToken != "" { //GateToken 이 있는 경우,유효 Request만 로그를 TargetDB에 쓸수가 있슴
  135. // l.MemberId = abg.Gtb.MemberId
  136. // l.UserId = abg.Gtb.UserId
  137. // if err := l.AddaRow(&abg); err != nil {
  138. // return c.String(603, err.Error())
  139. // }
  140. // }
  141. err1 := next(c)
  142. // fmt.Println("Pre 2번 미들웨어 종료")
  143. return err1
  144. }
  145. })
  146. c.Use(middleware.LoggerWithConfig(middleware.LoggerConfig{
  147. Format: "Finish >> method=${method}, uri=${uri}, status=${status} \n",
  148. }))
  149. for _, r := range routes {
  150. c.Match(r.Method, r.Path, r.Handler)
  151. }
  152. // c.Static("/.well-known/acme-challenge", "/home/.well-known/acme-challenge")
  153. xc := abango.XConfig
  154. if xc["SslMode"] == "Yes" {
  155. e.OkLog("SSL(HTTPS) Mode Started !!")
  156. //API Server 포트가 443: "https://api.dabory.com", 40443 포트: "https://api.dabory.com"
  157. c.Logger.Fatal(c.StartTLS(xc["SslConnect"], xc["SslFullChain"], xc["SslPrivate"]))
  158. } else {
  159. e.OkLog("PLAIN(HTTP) Mode Started !!")
  160. c.Logger.Fatal(c.Start(abango.XConfig["RestConnect"]))
  161. }
  162. }
  163. func CheckAppPerm(y *abango.Controller, uri string) error {
  164. if y.Gtb.SsoSubId == 0 {
  165. return nil
  166. }
  167. var qName string //이쿼리 queries 필드에거 가져와서 진행할 수 있도록 할 것.
  168. sql := `select
  169. mx.id
  170. from
  171. pro_member_app as mx
  172. inner join pro_app_perm as prm on mx.app_perm_id = prm.id
  173. inner join pro_app_perm_bd as bdy on prm.id = bdy.app_perm_id
  174. inner join pro_app_api as api on api.id = bdy.app_api_id
  175. where
  176. mx.sso_sub_id = ? and api.api_uri = ?`
  177. // qName = "kkk"
  178. //나중에 "QueryName 찾는 로직도 넣을 것
  179. if qName != "" {
  180. sql += " and api.query_name = '" + qName + "'"
  181. }
  182. // fmt.Println("y.Gtb.SsoSubId,", y.Gtb.SsoSubId)
  183. // fmt.Println("uri: ", uri)
  184. // fmt.Println("sql: ", sql)
  185. arr, err := y.Db.Query(sql, y.Gtb.SsoSubId, uri)
  186. if err != nil {
  187. return e.LogErr("3f0oijhbfre", "Query issue. ", err)
  188. }
  189. if len(arr) == 1 {
  190. return nil
  191. } else {
  192. return e.LogErr("34445ef34r", "App Api Record Issue ", errors.New(""))
  193. }
  194. }