HttpClient.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /*
  2. * @Description:
  3. * @Version: 1.0
  4. * @Autor: lishengyin
  5. * @Date: 2021-11-03 14:08:44
  6. * @LastEditors: lishengyin
  7. * @LastEditTime: 2021-11-10 17:15:44
  8. */
  9. #pragma once
  10. #include <iostream>
  11. #include <time.h>
  12. #include <ctime>
  13. #include "Util/logger.h"
  14. #include "Util/NoticeCenter.h"
  15. #include "Poller/EventPoller.h"
  16. #include "Player/PlayerProxy.h"
  17. #include "Rtmp/RtmpPusher.h"
  18. #include "Common/config.h"
  19. #include "Pusher/MediaPusher.h"
  20. #include "Extension/Frame.h"
  21. #include "Util/SqlPool.h"
  22. #include "Network/TcpClient.h"
  23. #include "Poller/Timer.h"
  24. #include "TCPClient.h"
  25. #include "inifile.h"
  26. #include "Notices.h"
  27. #include "md5.h"
  28. #include "NettyHttpResultMsg.h"
  29. #include "NettyHttpToken.h"
  30. #include "NettyHttpNull.h"
  31. #include "NettyHttpCarInfo.h"
  32. using namespace std;
  33. namespace MIVA
  34. {
  35. class HttpClient
  36. {
  37. private:
  38. // 用户名
  39. std::string account;
  40. std::string pwd;
  41. // 固定16位私钥
  42. std::string privateKey = "mwWAH2eUAAHodlRt";
  43. // authToken
  44. std::string authToken = "";
  45. // refreshToken
  46. std::string refreshToken = "";
  47. public:
  48. HttpClient();
  49. ~HttpClient();
  50. /**
  51. * @description: 初始化
  52. * @param {string} account
  53. * @param {string} url
  54. * @param {int} port
  55. * @return {*}
  56. */
  57. int32_t Init(std::string account,std::string url, int port);
  58. /**
  59. * @description: 创建对象
  60. * @param {*}
  61. * @return {*}
  62. */
  63. static std::shared_ptr<HttpClient> CreateNew();
  64. /**
  65. * @description: 登录
  66. * @param {*}
  67. * @return {*}
  68. */
  69. int32_t LoginNetty();
  70. /**
  71. * @description: 获取用户时间
  72. * @param {*}
  73. * @return {*}
  74. */
  75. int32_t GetUserData();
  76. /**
  77. * @description: 获取时间
  78. * @param {char} *ctime
  79. * @return {*}
  80. */
  81. static void getDataTime(char *ctime);
  82. /**
  83. * @description: 判断是否获取到Token
  84. * @param {*}
  85. * @return {*}
  86. */
  87. bool alive();
  88. };
  89. } // namespace name