12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package search
- import (
- "bytes"
- "encoding/json"
- "io/ioutil"
- "net/http"
- "github.com/G-Node/gogs/internal/conf"
- "github.com/G-Node/gogs/internal/context"
- "github.com/G-Node/libgin/libgin"
- )
- func Search(c *context.APIContext) {
- // TODO: API calls shouldn't use cookie (see https://github.com/G-Node/gin-dex/issues/2)
- if !c.IsLogged {
- c.Status(http.StatusUnauthorized)
- return
- }
- if conf.Search.SearchURL == "" {
- c.Status(http.StatusNotImplemented)
- return
- }
- ireq := libgin.SearchRequest{}
- data, err := json.Marshal(ireq)
- if err != nil {
- c.Status(http.StatusInternalServerError)
- return
- }
- req, _ := http.NewRequest("Post", conf.Search.SearchURL, bytes.NewReader(data))
- cl := http.Client{}
- resp, err := cl.Do(req)
- if err != nil {
- c.Status(http.StatusInternalServerError)
- return
- }
- data, err = ioutil.ReadAll(resp.Body)
- if err != nil {
- c.Status(http.StatusInternalServerError)
- return
- }
- c.Write(data)
- }
|