4/call_api
ajikamaludin 2 years ago
parent e466440cc4
commit cad5ca9bed
Signed by: ajikamaludin
GPG Key ID: 476C9A2B4B794EBB

@ -175,4 +175,13 @@ import (
- create `pkg/v1/utils/converter` dir, create `converter.go` file in there, to convert camelcase to snake_case
- create `pkg/v1/postgres/custom.main.go` to implement all query to database table custom
- changes `configs/configs.go` to bundle pg connection
- how to use custom.main.go call function from custom main in api status, check `api/v1/health/status.go`
- how to use custom.main.go call function from custom main in api status, check `api/v1/health/status.go`
### Example of call Other Rest API
- add new environtment to `config.yaml` add cert path
- changes `pkg/v1/config/config.go` to validate and add new environtment
- changes `pkg/v1/utils/constants` append method POST/GET/PUT/DELETE constant, JsonType Header, Hostname endpoint
- create `pkg/v1/cert` dir, create `cert.go`, this file is for handle Insecure ssl connection (self gen cert)
- create `pkg/v1/requestapi` dir, create `requestapi.go`, implement http call
- create `services/v1/jsonplaceholder` dir, create service name `jsonplaceholder.go`, implement any of endpoint http call from requestapi.go
- create new method from service health and implement call jsonplaceholder service from there ex: `api/v1/health/callapi.go`

@ -0,0 +1,38 @@
package health
import (
"context"
"github.com/ajikamaludin/go-grpc_basic/pkg/v1/utils/constants"
hlpb "github.com/ajikamaludin/go-grpc_basic/proto/v1/health"
"github.com/ajikamaludin/go-grpc_basic/services/v1/jsonplaceholder"
"github.com/golang/protobuf/ptypes/empty"
)
func (s *Server) CallApi(ctx context.Context, req *empty.Empty) (*hlpb.Response, error) {
// call reqres
res, err := jsonplaceholder.GetListUser()
if err != nil {
s.logger.Errorf("[HEALTH][GET] ERROR %v", err)
}
var data []*hlpb.Data
for _, v := range *res {
data = append(data, &hlpb.Data{
Id: uint32(v.ID),
Name: v.Name,
Username: v.Username,
Email: v.Email,
Phone: v.Phone,
Website: v.Website,
})
}
return &hlpb.Response{
Success: true,
Code: constants.SuccessCode,
Desc: constants.SuccesDesc,
Data: data,
}, nil
}

@ -11,3 +11,5 @@ postgres:
dbname: test
username: aji
password: eta
cert:
path: certfile.pem

@ -0,0 +1,48 @@
package cert
import (
"crypto/x509"
"io/ioutil"
"github.com/ajikamaludin/go-grpc_basic/pkg/v1/config"
"github.com/ajikamaludin/go-grpc_basic/pkg/v1/utils/constants"
)
// Config is the struct that used to store the config file
type Config struct {
FinacleCertPool Cert
}
// Cert is the struct wrapper which contains cert pool and flag to allow skip read the cert or not
type Cert struct {
AllowSkip bool
Pool *x509.CertPool
}
// New init cert config file
func New(config *config.Config) (*Cert, error) {
//cert config
if config.Env != constants.EnvProduction {
return &Cert{
AllowSkip: true,
}, nil
}
certPool := x509.NewCertPool()
if config.Cert.Path == "" {
return nil, nil
}
pem, err := ioutil.ReadFile(config.Cert.Path)
if err != nil {
return nil, err
}
certPool.AppendCertsFromPEM(pem)
return &Cert{
AllowSkip: false,
Pool: certPool,
}, nil
}

@ -28,6 +28,9 @@ type Config struct {
Username string `yaml:"username"`
Password string `yaml:"password"`
} `yaml:"postgres"`
Cert struct {
Path string `yaml:"path"`
} `yaml:"cert"`
}
func New() (*Config, error) {
@ -122,6 +125,9 @@ func validateConfigData(config *Config) error {
if config.Postgres.Password == "" {
return errors.New("postgres.pass is empty")
}
if config.Cert.Path == "" {
return errors.New("cert.path is empty")
}
return nil
}

@ -0,0 +1,105 @@
package requestapi
import (
"bytes"
"crypto/tls"
"errors"
"fmt"
"io/ioutil"
"net/http"
"time"
"github.com/ajikamaludin/go-grpc_basic/pkg/v1/cert"
"github.com/ajikamaludin/go-grpc_basic/pkg/v1/utils/constants"
)
// Info is the http req info
type ReqInfo struct {
URL string
Method string
HeadersInfo map[string]interface{}
Body []byte
}
type ResInfo struct {
StatusCode int
Header http.Header
Body []byte
}
func Invoke(reqinf *ReqInfo, timeout time.Duration, crt *cert.Cert) (*ResInfo, error) {
var req *http.Request
var err error
switch reqinf.Method {
case constants.MethodGET:
req, err = http.NewRequest(constants.MethodGET, reqinf.URL, nil)
case constants.MethodPOST:
req, err = http.NewRequest(constants.MethodPOST, reqinf.URL, bytes.NewReader(reqinf.Body))
}
if err != nil {
return nil, err
}
// set header
for key, value := range reqinf.HeadersInfo {
req.Header.Add(key, value.(string))
}
// execute
cl := newHTTPCLientCrt(crt, timeout)
res, err := cl.Do(req)
if err != nil {
return nil, err
}
defer res.Body.Close()
if !(res.StatusCode == http.StatusOK || res.StatusCode == http.StatusCreated) {
return nil, errors.New(fmt.Sprintf("%v for %v", res.StatusCode, reqinf.URL))
}
// read body
buf, err := ioutil.ReadAll(res.Body)
if err != nil {
return nil, err
}
return &ResInfo{
StatusCode: res.StatusCode,
Body: buf,
}, nil
}
func newHTTPCLientCrt(crt *cert.Cert, timeout time.Duration) *http.Client {
// define the default http client
defaultRoundTripper := http.DefaultTransport
defaultTransportPtr, _ := defaultRoundTripper.(*http.Transport)
tr := defaultTransportPtr.Clone()
if crt == nil {
return &http.Client{
Timeout: timeout,
}
}
// use cert
tr.TLSClientConfig = &tls.Config{
RootCAs: crt.Pool,
}
if crt.AllowSkip {
tr.TLSClientConfig = &tls.Config{
InsecureSkipVerify: true,
}
}
// define the max connection idle
tr.MaxIdleConns = 100
tr.MaxIdleConnsPerHost = 20
return &http.Client{
Timeout: timeout,
Transport: tr,
}
}

@ -12,3 +12,21 @@ const (
const (
Table_Custom_Main = "custom.main"
)
const (
MethodGET = "GET"
MethodPOST = "POST"
MethodPUT = "PUT"
MethodDELETE = "DELETE"
)
const (
Host_Reqres = "https://jsonplaceholder.typicode.com"
)
const (
JSONType = "application/json"
XMLType = "application/xml"
URLEncodedType = "application/x-www-form-urlencoded"
STREAMType = "application/octet-stream"
)

@ -2,7 +2,7 @@
// versions:
// protoc-gen-go v1.26.0
// protoc v3.21.2
// source: health.proto
// source: v1/health/health.proto
package health
@ -26,20 +26,108 @@ const (
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type Data struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
Username string `protobuf:"bytes,3,opt,name=username,proto3" json:"username,omitempty"`
Email string `protobuf:"bytes,4,opt,name=email,proto3" json:"email,omitempty"`
Phone string `protobuf:"bytes,5,opt,name=phone,proto3" json:"phone,omitempty"`
Website string `protobuf:"bytes,6,opt,name=website,proto3" json:"website,omitempty"`
}
func (x *Data) Reset() {
*x = Data{}
if protoimpl.UnsafeEnabled {
mi := &file_v1_health_health_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *Data) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Data) ProtoMessage() {}
func (x *Data) ProtoReflect() protoreflect.Message {
mi := &file_v1_health_health_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use Data.ProtoReflect.Descriptor instead.
func (*Data) Descriptor() ([]byte, []int) {
return file_v1_health_health_proto_rawDescGZIP(), []int{0}
}
func (x *Data) GetId() uint32 {
if x != nil {
return x.Id
}
return 0
}
func (x *Data) GetName() string {
if x != nil {
return x.Name
}
return ""
}
func (x *Data) GetUsername() string {
if x != nil {
return x.Username
}
return ""
}
func (x *Data) GetEmail() string {
if x != nil {
return x.Email
}
return ""
}
func (x *Data) GetPhone() string {
if x != nil {
return x.Phone
}
return ""
}
func (x *Data) GetWebsite() string {
if x != nil {
return x.Website
}
return ""
}
type Response struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
Code string `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
Desc string `protobuf:"bytes,3,opt,name=desc,proto3" json:"desc,omitempty"`
Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
Code string `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
Desc string `protobuf:"bytes,3,opt,name=desc,proto3" json:"desc,omitempty"`
Data []*Data `protobuf:"bytes,4,rep,name=data,proto3" json:"data,omitempty"`
}
func (x *Response) Reset() {
*x = Response{}
if protoimpl.UnsafeEnabled {
mi := &file_health_proto_msgTypes[0]
mi := &file_v1_health_health_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@ -52,7 +140,7 @@ func (x *Response) String() string {
func (*Response) ProtoMessage() {}
func (x *Response) ProtoReflect() protoreflect.Message {
mi := &file_health_proto_msgTypes[0]
mi := &file_v1_health_health_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@ -65,7 +153,7 @@ func (x *Response) ProtoReflect() protoreflect.Message {
// Deprecated: Use Response.ProtoReflect.Descriptor instead.
func (*Response) Descriptor() ([]byte, []int) {
return file_health_proto_rawDescGZIP(), []int{0}
return file_v1_health_health_proto_rawDescGZIP(), []int{1}
}
func (x *Response) GetSuccess() bool {
@ -89,67 +177,109 @@ func (x *Response) GetDesc() string {
return ""
}
var File_health_proto protoreflect.FileDescriptor
var file_health_proto_rawDesc = []byte{
0x0a, 0x0c, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x14,
0x61, 0x70, 0x69, 0x2e, 0x67, 0x6f, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x76, 0x31, 0x2e, 0x68, 0x65,
0x61, 0x6c, 0x74, 0x68, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69,
0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22,
0x4c, 0x0a, 0x08, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73,
0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x73, 0x75,
0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20,
0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x65, 0x73,
0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64, 0x65, 0x73, 0x63, 0x32, 0x70, 0x0a,
0x0d, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x5f,
0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x67, 0x6f, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x76, 0x31,
0x2e, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x12, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76,
0x31, 0x2f, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42,
0x37, 0x5a, 0x35, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x6a,
0x69, 0x6b, 0x61, 0x6d, 0x61, 0x6c, 0x75, 0x64, 0x69, 0x6e, 0x2f, 0x67, 0x6f, 0x2d, 0x67, 0x72,
0x70, 0x63, 0x5f, 0x62, 0x61, 0x73, 0x69, 0x63, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76,
0x31, 0x2f, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
func (x *Response) GetData() []*Data {
if x != nil {
return x.Data
}
return nil
}
var File_v1_health_health_proto protoreflect.FileDescriptor
var file_v1_health_health_proto_rawDesc = []byte{
0x0a, 0x16, 0x76, 0x31, 0x2f, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x2f, 0x68, 0x65, 0x61, 0x6c,
0x74, 0x68, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x14, 0x61, 0x70, 0x69, 0x2e, 0x67, 0x6f,
0x67, 0x72, 0x70, 0x63, 0x2e, 0x76, 0x31, 0x2e, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x1a, 0x1c,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74,
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d,
0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x8c, 0x01, 0x0a, 0x04, 0x44, 0x61,
0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x02,
0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61,
0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61,
0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28,
0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e,
0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x18,
0x0a, 0x07, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
0x07, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x22, 0x7c, 0x0a, 0x08, 0x52, 0x65, 0x73, 0x70,
0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18,
0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x12,
0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f,
0x64, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
0x52, 0x04, 0x64, 0x65, 0x73, 0x63, 0x12, 0x2e, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x04,
0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x67, 0x6f, 0x67, 0x72, 0x70,
0x63, 0x2e, 0x76, 0x31, 0x2e, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x2e, 0x44, 0x61, 0x74, 0x61,
0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x32, 0xd3, 0x01, 0x0a, 0x0d, 0x48, 0x65, 0x61, 0x6c, 0x74,
0x68, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x5f, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69,
0x2e, 0x67, 0x6f, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x76, 0x31, 0x2e, 0x68, 0x65, 0x61, 0x6c, 0x74,
0x68, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93,
0x02, 0x17, 0x12, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x68, 0x65, 0x61, 0x6c,
0x74, 0x68, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x61, 0x0a, 0x07, 0x43, 0x61, 0x6c,
0x6c, 0x41, 0x70, 0x69, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1e, 0x2e, 0x61,
0x70, 0x69, 0x2e, 0x67, 0x6f, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x76, 0x31, 0x2e, 0x68, 0x65, 0x61,
0x6c, 0x74, 0x68, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1e, 0x82, 0xd3,
0xe4, 0x93, 0x02, 0x18, 0x12, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x68, 0x65,
0x61, 0x6c, 0x74, 0x68, 0x2f, 0x63, 0x61, 0x6c, 0x6c, 0x61, 0x70, 0x69, 0x42, 0x37, 0x5a, 0x35,
0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x6a, 0x69, 0x6b, 0x61,
0x6d, 0x61, 0x6c, 0x75, 0x64, 0x69, 0x6e, 0x2f, 0x67, 0x6f, 0x2d, 0x67, 0x72, 0x70, 0x63, 0x5f,
0x62, 0x61, 0x73, 0x69, 0x63, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 0x31, 0x2f, 0x68,
0x65, 0x61, 0x6c, 0x74, 0x68, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
file_health_proto_rawDescOnce sync.Once
file_health_proto_rawDescData = file_health_proto_rawDesc
file_v1_health_health_proto_rawDescOnce sync.Once
file_v1_health_health_proto_rawDescData = file_v1_health_health_proto_rawDesc
)
func file_health_proto_rawDescGZIP() []byte {
file_health_proto_rawDescOnce.Do(func() {
file_health_proto_rawDescData = protoimpl.X.CompressGZIP(file_health_proto_rawDescData)
func file_v1_health_health_proto_rawDescGZIP() []byte {
file_v1_health_health_proto_rawDescOnce.Do(func() {
file_v1_health_health_proto_rawDescData = protoimpl.X.CompressGZIP(file_v1_health_health_proto_rawDescData)
})
return file_health_proto_rawDescData
return file_v1_health_health_proto_rawDescData
}
var file_health_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
var file_health_proto_goTypes = []interface{}{
(*Response)(nil), // 0: api.gogrpc.v1.health.Response
(*emptypb.Empty)(nil), // 1: google.protobuf.Empty
var file_v1_health_health_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
var file_v1_health_health_proto_goTypes = []interface{}{
(*Data)(nil), // 0: api.gogrpc.v1.health.Data
(*Response)(nil), // 1: api.gogrpc.v1.health.Response
(*emptypb.Empty)(nil), // 2: google.protobuf.Empty
}
var file_health_proto_depIdxs = []int32{
1, // 0: api.gogrpc.v1.health.HealthService.Status:input_type -> google.protobuf.Empty
0, // 1: api.gogrpc.v1.health.HealthService.Status:output_type -> api.gogrpc.v1.health.Response
1, // [1:2] is the sub-list for method output_type
0, // [0:1] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
0, // [0:0] is the sub-list for extension extendee
0, // [0:0] is the sub-list for field type_name
var file_v1_health_health_proto_depIdxs = []int32{
0, // 0: api.gogrpc.v1.health.Response.data:type_name -> api.gogrpc.v1.health.Data
2, // 1: api.gogrpc.v1.health.HealthService.Status:input_type -> google.protobuf.Empty
2, // 2: api.gogrpc.v1.health.HealthService.CallApi:input_type -> google.protobuf.Empty
1, // 3: api.gogrpc.v1.health.HealthService.Status:output_type -> api.gogrpc.v1.health.Response
1, // 4: api.gogrpc.v1.health.HealthService.CallApi:output_type -> api.gogrpc.v1.health.Response
3, // [3:5] is the sub-list for method output_type
1, // [1:3] is the sub-list for method input_type
1, // [1:1] is the sub-list for extension type_name
1, // [1:1] is the sub-list for extension extendee
0, // [0:1] is the sub-list for field type_name
}
func init() { file_health_proto_init() }
func file_health_proto_init() {
if File_health_proto != nil {
func init() { file_v1_health_health_proto_init() }
func file_v1_health_health_proto_init() {
if File_v1_health_health_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_health_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
file_v1_health_health_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Data); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_v1_health_health_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Response); i {
case 0:
return &v.state
@ -166,20 +296,20 @@ func file_health_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_health_proto_rawDesc,
RawDescriptor: file_v1_health_health_proto_rawDesc,
NumEnums: 0,
NumMessages: 1,
NumMessages: 2,
NumExtensions: 0,
NumServices: 1,
},
GoTypes: file_health_proto_goTypes,
DependencyIndexes: file_health_proto_depIdxs,
MessageInfos: file_health_proto_msgTypes,
GoTypes: file_v1_health_health_proto_goTypes,
DependencyIndexes: file_v1_health_health_proto_depIdxs,
MessageInfos: file_v1_health_health_proto_msgTypes,
}.Build()
File_health_proto = out.File
file_health_proto_rawDesc = nil
file_health_proto_goTypes = nil
file_health_proto_depIdxs = nil
File_v1_health_health_proto = out.File
file_v1_health_health_proto_rawDesc = nil
file_v1_health_health_proto_goTypes = nil
file_v1_health_health_proto_depIdxs = nil
}
// Reference imports to suppress errors if they are not otherwise used.
@ -195,6 +325,7 @@ const _ = grpc.SupportPackageIsVersion6
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
type HealthServiceClient interface {
Status(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*Response, error)
CallApi(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*Response, error)
}
type healthServiceClient struct {
@ -214,9 +345,19 @@ func (c *healthServiceClient) Status(ctx context.Context, in *emptypb.Empty, opt
return out, nil
}
func (c *healthServiceClient) CallApi(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*Response, error) {
out := new(Response)
err := c.cc.Invoke(ctx, "/api.gogrpc.v1.health.HealthService/CallApi", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// HealthServiceServer is the server API for HealthService service.
type HealthServiceServer interface {
Status(context.Context, *emptypb.Empty) (*Response, error)
CallApi(context.Context, *emptypb.Empty) (*Response, error)
}
// UnimplementedHealthServiceServer can be embedded to have forward compatible implementations.
@ -226,6 +367,9 @@ type UnimplementedHealthServiceServer struct {
func (*UnimplementedHealthServiceServer) Status(context.Context, *emptypb.Empty) (*Response, error) {
return nil, status.Errorf(codes.Unimplemented, "method Status not implemented")
}
func (*UnimplementedHealthServiceServer) CallApi(context.Context, *emptypb.Empty) (*Response, error) {
return nil, status.Errorf(codes.Unimplemented, "method CallApi not implemented")
}
func RegisterHealthServiceServer(s *grpc.Server, srv HealthServiceServer) {
s.RegisterService(&_HealthService_serviceDesc, srv)
@ -249,6 +393,24 @@ func _HealthService_Status_Handler(srv interface{}, ctx context.Context, dec fun
return interceptor(ctx, in, info, handler)
}
func _HealthService_CallApi_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(emptypb.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(HealthServiceServer).CallApi(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/api.gogrpc.v1.health.HealthService/CallApi",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(HealthServiceServer).CallApi(ctx, req.(*emptypb.Empty))
}
return interceptor(ctx, in, info, handler)
}
var _HealthService_serviceDesc = grpc.ServiceDesc{
ServiceName: "api.gogrpc.v1.health.HealthService",
HandlerType: (*HealthServiceServer)(nil),
@ -257,7 +419,11 @@ var _HealthService_serviceDesc = grpc.ServiceDesc{
MethodName: "Status",
Handler: _HealthService_Status_Handler,
},
{
MethodName: "CallApi",
Handler: _HealthService_CallApi_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "health.proto",
Metadata: "v1/health/health.proto",
}

@ -1,5 +1,5 @@
// Code generated by protoc-gen-grpc-gateway. DO NOT EDIT.
// source: health.proto
// source: v1/health/health.proto
/*
Package health is a reverse proxy.
@ -52,6 +52,24 @@ func local_request_HealthService_Status_0(ctx context.Context, marshaler runtime
}
func request_HealthService_CallApi_0(ctx context.Context, marshaler runtime.Marshaler, client HealthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq emptypb.Empty
var metadata runtime.ServerMetadata
msg, err := client.CallApi(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
return msg, metadata, err
}
func local_request_HealthService_CallApi_0(ctx context.Context, marshaler runtime.Marshaler, server HealthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq emptypb.Empty
var metadata runtime.ServerMetadata
msg, err := server.CallApi(ctx, &protoReq)
return msg, metadata, err
}
// RegisterHealthServiceHandlerServer registers the http handlers for service HealthService to "mux".
// UnaryRPC :call HealthServiceServer directly.
// StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.
@ -81,6 +99,29 @@ func RegisterHealthServiceHandlerServer(ctx context.Context, mux *runtime.ServeM
})
mux.Handle("GET", pattern_HealthService_CallApi_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
var stream runtime.ServerTransportStream
ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
return
}
resp, md, err := local_request_HealthService_CallApi_0(rctx, inboundMarshaler, server, req, pathParams)
md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
return
}
forward_HealthService_CallApi_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
})
return nil
}
@ -142,13 +183,37 @@ func RegisterHealthServiceHandlerClient(ctx context.Context, mux *runtime.ServeM
})
mux.Handle("GET", pattern_HealthService_CallApi_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateContext(ctx, mux, req)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
return
}
resp, md, err := request_HealthService_CallApi_0(rctx, inboundMarshaler, client, req, pathParams)
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
return
}
forward_HealthService_CallApi_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
})
return nil
}
var (
pattern_HealthService_Status_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"api", "v1", "health", "status"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_HealthService_CallApi_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"api", "v1", "health", "callapi"}, "", runtime.AssumeColonVerbOpt(true)))
)
var (
forward_HealthService_Status_0 = runtime.ForwardResponseMessage
forward_HealthService_CallApi_0 = runtime.ForwardResponseMessage
)

@ -7,10 +7,20 @@ option go_package = "github.com/ajikamaludin/go-grpc_basic/proto/v1/health";
import "google/api/annotations.proto";
import "google/protobuf/empty.proto";
message Data {
uint32 id = 1;
string name = 2;
string username = 3;
string email = 4;
string phone = 5;
string website = 6;
}
message Response {
bool success = 1;
string code = 2;
string desc = 3;
repeated Data data = 4;
}
service HealthService {
@ -19,4 +29,10 @@ service HealthService {
get: "/api/v1/health/status"
};
}
rpc CallApi(google.protobuf.Empty) returns (Response) {
option (google.api.http) = {
get: "/api/v1/health/callapi"
};
}
}

@ -0,0 +1,53 @@
package jsonplaceholder
import (
"encoding/json"
"fmt"
"time"
"github.com/ajikamaludin/go-grpc_basic/pkg/v1/requestapi"
"github.com/ajikamaludin/go-grpc_basic/pkg/v1/utils/constants"
)
type Response []struct {
ID int `json:"id"`
Name string `json:"name"`
Username string `json:"username"`
Email string `json:"email"`
Address struct {
Street string `json:"street"`
Suite string `json:"suite"`
City string `json:"city"`
Zipcode string `json:"zipcode"`
Geo struct {
Lat string `json:"lat"`
Lng string `json:"lng"`
} `json:"geo"`
} `json:"address"`
Phone string `json:"phone"`
Website string `json:"website"`
Company struct {
Name string `json:"name"`
CatchPhrase string `json:"catchPhrase"`
Bs string `json:"bs"`
} `json:"company"`
}
func GetListUser() (*Response, error) {
res, err := requestapi.Invoke(&requestapi.ReqInfo{
URL: fmt.Sprintf("%v/users", constants.Host_Reqres),
Method: constants.MethodGET,
}, 60*time.Second, nil)
if err != nil {
return nil, err
}
var resp Response
err = json.Unmarshal(res.Body, &resp)
if err != nil {
return nil, err
}
return &resp, nil
}
Loading…
Cancel
Save