init-a_router-func.go 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  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 if uri == "/solution-type-get" {
  77. var v controllers_scraper.SolutionTypeGetReq
  78. err = json.NewDecoder(r.Body).Decode(&v)
  79. c.Set("receiver", v)
  80. } else if uri == "/product-page-get" {
  81. var v controllers_scraper.ProductPageGetReq
  82. err = json.NewDecoder(r.Body).Decode(&v)
  83. c.Set("receiver", v)
  84. } else { //!!주의 긴 string이 먼저나오게 지정할 것
  85. if locals.HasPickActPage(uri, "dummydummy") {
  86. } else {
  87. return c.String(709, e.LogStr("ewgvdafewwa", "Request Function Not Found in Middleware for "+uri))
  88. }
  89. }
  90. if err != nil { // error 처리를 반복하지 않고 하나로 처리
  91. return c.String(800, e.JsonFormatErr("wevzxdfarfawe", uri)+" "+err.Error())
  92. }
  93. // if uri[len(uri)-4:] == "-act" {
  94. // var mapped map[string]interface{}
  95. // // id 번호 구함.
  96. // inxId := bytes.Index(bodyBytes, []byte("\"Id\""))
  97. // inxIdStart := 1 + inxId + bytes.Index(bodyBytes[inxId:], []byte(":"))
  98. // inxIdEnd := inxIdStart + bytes.Index(bodyBytes[inxIdStart:], []byte(","))
  99. // if inxIdStart > inxIdEnd { //Delete 는 { "Id": -152 } 형태이므로 , 가 없다.
  100. // inxIdEnd = inxIdStart + bytes.Index(bodyBytes[inxIdStart:], []byte("}"))
  101. // }
  102. // // fmt.Println("inxIdStart2:", inxIdStart)
  103. // // fmt.Println("inxIdEnd2", inxIdEnd)
  104. // idChar := string(bodyBytes[inxIdStart:inxIdEnd])
  105. // if idChar[len(idChar)-1:] == "}" { //{"Id": -1541}, 다중 레코드의 경우도 처리
  106. // idChar = idChar[:len(idChar)-1]
  107. // }
  108. // strId := strings.TrimSpace(idChar)
  109. // intId, err := strconv.Atoi(strId)
  110. // // fmt.Println("strId=", strId)
  111. // if err != nil { // Id 가 정수가 아니면 치명적에러 이다. // ** 입력,수정,삭제를 복합적으로 한번에 request하는 것은 처리 안됨.
  112. // return c.String(800, e.JsonFormatErr("0qjhoysaee", "Id value is not a integer "+err.Error()))
  113. // }
  114. // if intId > 0 { //id > 0 경우는 update인 경우만 처리한다.
  115. // inxPage := bytes.Index(bodyBytes, []byte("\"Page\""))
  116. // inxCoreStart := inxPage + bytes.Index(bodyBytes[inxPage:], []byte("{"))
  117. // //Json 필드를 찾기 Skip 하기 위한 부분인데 만약 Json Field가 2개이상이면 For문으로 업그레이드 필요.
  118. // // 현재는 setup-act 와 eyetest-act의 경우를 처리함.
  119. // inxCoreJson := bytes.Index(bodyBytes, []byte("}\"")) //Json필드의 마지막은 이렇게 저장된다.
  120. // inxCoreEnd := 0
  121. // if inxCoreJson <= inxCoreStart { //Json 필드 없는 경우
  122. // inxCoreEnd = 1 + bytes.Index(bodyBytes, []byte("}"))
  123. // } else { //Json 필드 있는 경우
  124. // inxCoreJson = 1 + inxCoreJson
  125. // inxCoreEnd = 1 + inxCoreJson + bytes.Index(bodyBytes[inxCoreJson:], []byte("}"))
  126. // }
  127. // // fmt.Println("core:", string(bodyBytes[inxCoreStart:inxCoreEnd]))
  128. // if err := json.Unmarshal(bodyBytes[inxCoreStart:inxCoreEnd], &mapped); err != nil {
  129. // return c.String(800, e.JsonFormatErr("903uous09ur", uri))
  130. // }
  131. // update := ""
  132. // for fld := range mapped {
  133. // update += e.SnakeString(fld) + ","
  134. // }
  135. // abg.UpdateFieldList = update[0 : len(update)-1] //마지막 , 하니떼고
  136. // // fmt.Println("UpdateFieldList:", abg.UpdateFieldList)
  137. // }
  138. // }
  139. // }
  140. // c.Set("abango", abg) // 미들웨어에서 y.Db를 접속한 후 echo.Context 로 넘겨줌.
  141. //Log 기록 _setup반영요
  142. // if abg.GateToken != "" { //GateToken 이 있는 경우,유효 Request만 로그를 TargetDB에 쓸수가 있슴
  143. // l.MemberId = abg.Gtb.MemberId
  144. // l.UserId = abg.Gtb.UserId
  145. // if err := l.AddaRow(&abg); err != nil {
  146. // return c.String(603, err.Error())
  147. // }
  148. // }
  149. err1 := next(c)
  150. // fmt.Println("Pre 2번 미들웨어 종료")
  151. return err1
  152. }
  153. })
  154. c.Use(middleware.LoggerWithConfig(middleware.LoggerConfig{
  155. Format: "Finish >> method=${method}, uri=${uri}, status=${status} \n",
  156. }))
  157. for _, r := range routes {
  158. c.Match(r.Method, r.Path, r.Handler)
  159. }
  160. // c.Static("/.well-known/acme-challenge", "/home/.well-known/acme-challenge")
  161. xc := abango.XConfig
  162. if xc["SslMode"] == "Yes" {
  163. e.OkLog("SSL(HTTPS) Mode Started !!")
  164. //API Server 포트가 443: "https://api.dabory.com", 40443 포트: "https://api.dabory.com"
  165. c.Logger.Fatal(c.StartTLS(xc["SslConnect"], xc["SslFullChain"], xc["SslPrivate"]))
  166. } else {
  167. e.OkLog("PLAIN(HTTP) Mode Started !!")
  168. c.Logger.Fatal(c.Start(abango.XConfig["RestConnect"]))
  169. }
  170. }
  171. func CheckAppPerm(y *abango.Controller, uri string) error {
  172. if y.Gtb.SsoSubId == 0 {
  173. return nil
  174. }
  175. var qName string //이쿼리 queries 필드에거 가져와서 진행할 수 있도록 할 것.
  176. sql := `select
  177. mx.id
  178. from
  179. pro_member_app as mx
  180. inner join pro_app_perm as prm on mx.app_perm_id = prm.id
  181. inner join pro_app_perm_bd as bdy on prm.id = bdy.app_perm_id
  182. inner join pro_app_api as api on api.id = bdy.app_api_id
  183. where
  184. mx.sso_sub_id = ? and api.api_uri = ?`
  185. // qName = "kkk"
  186. //나중에 "QueryName 찾는 로직도 넣을 것
  187. if qName != "" {
  188. sql += " and api.query_name = '" + qName + "'"
  189. }
  190. // fmt.Println("y.Gtb.SsoSubId,", y.Gtb.SsoSubId)
  191. // fmt.Println("uri: ", uri)
  192. // fmt.Println("sql: ", sql)
  193. arr, err := y.Db.Query(sql, y.Gtb.SsoSubId, uri)
  194. if err != nil {
  195. return e.LogErr("3f0oijhbfre", "Query issue. ", err)
  196. }
  197. if len(arr) == 1 {
  198. return nil
  199. } else {
  200. return e.LogErr("34445ef34r", "App Api Record Issue ", errors.New(""))
  201. }
  202. }