微信接口的RPC包
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

234 lines
7.0 KiB

3 years ago
2 years ago
2 years ago
2 years ago
3 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. // Code generated by protoc-gen-go.
  2. // source: weixin.proto
  3. // DO NOT EDIT!
  4. /*
  5. Package weixinrpc is a generated protocol buffer package.
  6. It is generated from these files:
  7. weixin.proto
  8. It has these top-level messages:
  9. Request
  10. Response
  11. */
  12. package weixinrpc
  13. import proto "github.com/chai2010/protorpc/proto"
  14. import math "math"
  15. import "io"
  16. import "log"
  17. import "net"
  18. import "net/rpc"
  19. import "time"
  20. import protorpc "github.com/chai2010/protorpc"
  21. // Reference imports to suppress errors if they are not otherwise used.
  22. var _ = proto.Marshal
  23. var _ = math.Inf
  24. // 配置信息请求结构
  25. type Request struct {
  26. Data *string `protobuf:"bytes,1,opt,name=data" json:"data,omitempty"`
  27. Time *string `protobuf:"bytes,2,opt,name=time" json:"time,omitempty"`
  28. Sign *string `protobuf:"bytes,3,opt,name=sign" json:"sign,omitempty"`
  29. XXX_unrecognized []byte `json:"-"`
  30. }
  31. func (m *Request) Reset() { *m = Request{} }
  32. func (m *Request) String() string { return proto.CompactTextString(m) }
  33. func (*Request) ProtoMessage() {}
  34. func (m *Request) GetData() string {
  35. if m != nil && m.Data != nil {
  36. return *m.Data
  37. }
  38. return ""
  39. }
  40. func (m *Request) GetTime() string {
  41. if m != nil && m.Time != nil {
  42. return *m.Time
  43. }
  44. return ""
  45. }
  46. func (m *Request) GetSign() string {
  47. if m != nil && m.Sign != nil {
  48. return *m.Sign
  49. }
  50. return ""
  51. }
  52. // 配置信息响应结构
  53. type Response struct {
  54. Data *string `protobuf:"bytes,1,opt,name=data" json:"data,omitempty"`
  55. Time *string `protobuf:"bytes,2,opt,name=time" json:"time,omitempty"`
  56. Sign *string `protobuf:"bytes,3,opt,name=sign" json:"sign,omitempty"`
  57. XXX_unrecognized []byte `json:"-"`
  58. }
  59. func (m *Response) Reset() { *m = Response{} }
  60. func (m *Response) String() string { return proto.CompactTextString(m) }
  61. func (*Response) ProtoMessage() {}
  62. func (m *Response) GetData() string {
  63. if m != nil && m.Data != nil {
  64. return *m.Data
  65. }
  66. return ""
  67. }
  68. func (m *Response) GetTime() string {
  69. if m != nil && m.Time != nil {
  70. return *m.Time
  71. }
  72. return ""
  73. }
  74. func (m *Response) GetSign() string {
  75. if m != nil && m.Sign != nil {
  76. return *m.Sign
  77. }
  78. return ""
  79. }
  80. func init() {
  81. }
  82. type WeixinRpcService interface {
  83. GetAccessToken(in *Request, out *Response) error
  84. SendMiniappSubscribeMessage(in *Request, out *Response) error
  85. SendUniformMessage(in *Request, out *Response) error
  86. GetMiniAppOpenid(in *Request, out *Response) error
  87. GetMpOpenid(in *Request, out *Response) error
  88. GetAppOpenid(in *Request, out *Response) error
  89. GetMpUserInfo(in *Request, out *Response) error
  90. GetMiniappQrcode(in *Request, out *Response) error
  91. ImgSecCheck(in *Request, out *Response) error
  92. MsgSecCheck(in *Request, out *Response) error
  93. PayRefund(in *Request, out *Response) error
  94. }
  95. // AcceptWeixinRpcServiceClient accepts connections on the listener and serves requests
  96. // for each incoming connection. Accept blocks; the caller typically
  97. // invokes it in a go statement.
  98. func AcceptWeixinRpcServiceClient(lis net.Listener, x WeixinRpcService) {
  99. srv := rpc.NewServer()
  100. if err := srv.RegisterName("WeixinRpcService", x); err != nil {
  101. log.Fatal(err)
  102. }
  103. for {
  104. conn, err := lis.Accept()
  105. if err != nil {
  106. log.Fatalf("lis.Accept(): %v\n", err)
  107. }
  108. go srv.ServeCodec(protorpc.NewServerCodec(conn))
  109. }
  110. }
  111. // RegisterWeixinRpcService publish the given WeixinRpcService implementation on the server.
  112. func RegisterWeixinRpcService(srv *rpc.Server, x WeixinRpcService) error {
  113. if err := srv.RegisterName("WeixinRpcService", x); err != nil {
  114. return err
  115. }
  116. return nil
  117. }
  118. // NewWeixinRpcServiceServer returns a new WeixinRpcService Server.
  119. func NewWeixinRpcServiceServer(x WeixinRpcService) *rpc.Server {
  120. srv := rpc.NewServer()
  121. if err := srv.RegisterName("WeixinRpcService", x); err != nil {
  122. log.Fatal(err)
  123. }
  124. return srv
  125. }
  126. // ListenAndServeWeixinRpcService listen announces on the local network address laddr
  127. // and serves the given WeixinRpcService implementation.
  128. func ListenAndServeWeixinRpcService(network, addr string, x WeixinRpcService) error {
  129. lis, err := net.Listen(network, addr)
  130. if err != nil {
  131. return err
  132. }
  133. defer lis.Close()
  134. srv := rpc.NewServer()
  135. if err := srv.RegisterName("WeixinRpcService", x); err != nil {
  136. return err
  137. }
  138. for {
  139. conn, err := lis.Accept()
  140. if err != nil {
  141. log.Fatalf("lis.Accept(): %v\n", err)
  142. }
  143. go srv.ServeCodec(protorpc.NewServerCodec(conn))
  144. }
  145. }
  146. type WeixinRpcServiceClient struct {
  147. *rpc.Client
  148. }
  149. // NewWeixinRpcServiceClient returns a WeixinRpcService rpc.Client and stub to handle
  150. // requests to the set of WeixinRpcService at the other end of the connection.
  151. func NewWeixinRpcServiceClient(conn io.ReadWriteCloser) (*WeixinRpcServiceClient, *rpc.Client) {
  152. c := rpc.NewClientWithCodec(protorpc.NewClientCodec(conn))
  153. return &WeixinRpcServiceClient{c}, c
  154. }
  155. func (c *WeixinRpcServiceClient) GetAccessToken(in *Request, out *Response) error {
  156. return c.Call("WeixinRpcService.GetAccessToken", in, out)
  157. }
  158. func (c *WeixinRpcServiceClient) SendMiniappSubscribeMessage(in *Request, out *Response) error {
  159. return c.Call("WeixinRpcService.SendMiniappSubscribeMessage", in, out)
  160. }
  161. func (c *WeixinRpcServiceClient) SendUniformMessage(in *Request, out *Response) error {
  162. return c.Call("WeixinRpcService.SendUniformMessage", in, out)
  163. }
  164. func (c *WeixinRpcServiceClient) GetMiniAppOpenid(in *Request, out *Response) error {
  165. return c.Call("WeixinRpcService.GetMiniAppOpenid", in, out)
  166. }
  167. func (c *WeixinRpcServiceClient) GetMpOpenid(in *Request, out *Response) error {
  168. return c.Call("WeixinRpcService.GetMpOpenid", in, out)
  169. }
  170. func (c *WeixinRpcServiceClient) GetAppOpenid(in *Request, out *Response) error {
  171. return c.Call("WeixinRpcService.GetAppOpenid", in, out)
  172. }
  173. func (c *WeixinRpcServiceClient) GetMpUserInfo(in *Request, out *Response) error {
  174. return c.Call("WeixinRpcService.GetMpUserInfo", in, out)
  175. }
  176. func (c *WeixinRpcServiceClient) GetMiniappQrcode(in *Request, out *Response) error {
  177. return c.Call("WeixinRpcService.GetMiniappQrcode", in, out)
  178. }
  179. func (c *WeixinRpcServiceClient) ImgSecCheck(in *Request, out *Response) error {
  180. return c.Call("WeixinRpcService.ImgSecCheck", in, out)
  181. }
  182. func (c *WeixinRpcServiceClient) MsgSecCheck(in *Request, out *Response) error {
  183. return c.Call("WeixinRpcService.MsgSecCheck", in, out)
  184. }
  185. func (c *WeixinRpcServiceClient) PayRefund(in *Request, out *Response) error {
  186. return c.Call("WeixinRpcService.PayRefund", in, out)
  187. }
  188. // DialWeixinRpcService connects to an WeixinRpcService at the specified network address.
  189. func DialWeixinRpcService(network, addr string) (*WeixinRpcServiceClient, *rpc.Client, error) {
  190. c, err := protorpc.Dial(network, addr)
  191. if err != nil {
  192. return nil, nil, err
  193. }
  194. return &WeixinRpcServiceClient{c}, c, nil
  195. }
  196. // DialWeixinRpcServiceTimeout connects to an WeixinRpcService at the specified network address.
  197. func DialWeixinRpcServiceTimeout(network, addr string,
  198. timeout time.Duration) (*WeixinRpcServiceClient, *rpc.Client, error) {
  199. c, err := protorpc.DialTimeout(network, addr, timeout)
  200. if err != nil {
  201. return nil, nil, err
  202. }
  203. return &WeixinRpcServiceClient{c}, c, nil
  204. }