PCClientApiDlg.cpp
上传用户:coffee44
上传日期:2018-10-23
资源大小:12304k
文件大小:10k
源码类别:

TAPI编程

开发平台:

Visual C++

  1. // PCClientApiDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "PCClientApi.h"
  5. #include "PCClientApiDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CAboutDlg dialog used for App About
  13. // http://119.145.9.154:8080/api
  14. //119.145.9.154
  15. char  TEST_SERVERURL[]  = "http://192.168.194.67:8080/api"; 
  16. char  APPKEY[] = "DEADKEY1234567890ABCDEFG1976";
  17. char  APPSECRETKEY[] = "AA550987654321A5A5";
  18. char  APPSESSIONKEY[] = "DEADAA550987654321A5A5";
  19. class CAboutDlg : public CDialog
  20. {
  21. public:
  22. CAboutDlg();
  23. // Dialog Data
  24. //{{AFX_DATA(CAboutDlg)
  25. enum { IDD = IDD_ABOUTBOX };
  26. //}}AFX_DATA
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CAboutDlg)
  29. protected:
  30. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. protected:
  34. //{{AFX_MSG(CAboutDlg)
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. };
  38. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  39. {
  40. //{{AFX_DATA_INIT(CAboutDlg)
  41. //}}AFX_DATA_INIT
  42. }
  43. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  44. {
  45. CDialog::DoDataExchange(pDX);
  46. //{{AFX_DATA_MAP(CAboutDlg)
  47. //}}AFX_DATA_MAP
  48. }
  49. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  50. //{{AFX_MSG_MAP(CAboutDlg)
  51. // No message handlers
  52. //}}AFX_MSG_MAP
  53. END_MESSAGE_MAP()
  54. /////////////////////////////////////////////////////////////////////////////
  55. // CPCClientApiDlg dialog
  56. CPCClientApiDlg::CPCClientApiDlg(CWnd* pParent /*=NULL*/)
  57. : CDialog(CPCClientApiDlg::IDD, pParent)
  58. {
  59. //{{AFX_DATA_INIT(CPCClientApiDlg)
  60. m_cstrKey = _T("userName");
  61. m_cstrUrl = _T("http://119.145.9.154:8080/api");
  62. //}}AFX_DATA_INIT
  63. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  64. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  65. m_pApiClient = NULL;
  66. }
  67. void CPCClientApiDlg::DoDataExchange(CDataExchange* pDX)
  68. {
  69. CDialog::DoDataExchange(pDX);
  70. //{{AFX_DATA_MAP(CPCClientApiDlg)
  71. DDX_Control(pDX, IDC_COMBO, m_ctrCbxWay);
  72. DDX_Control(pDX, IDC_LIST, m_ctrLstValue);
  73. DDX_Text(pDX, IDC_EDIT_KEY, m_cstrKey);
  74. DDX_Text(pDX, IDC_EDIT_URL, m_cstrUrl);
  75. //}}AFX_DATA_MAP
  76. }
  77. BEGIN_MESSAGE_MAP(CPCClientApiDlg, CDialog)
  78. //{{AFX_MSG_MAP(CPCClientApiDlg)
  79. ON_WM_SYSCOMMAND()
  80. ON_WM_PAINT()
  81. ON_WM_QUERYDRAGICON()
  82. //}}AFX_MSG_MAP
  83. END_MESSAGE_MAP()
  84. /////////////////////////////////////////////////////////////////////////////
  85. // CPCClientApiDlg message handlers
  86. BOOL CPCClientApiDlg::OnInitDialog()
  87. {
  88. CDialog::OnInitDialog();
  89. // Add "About..." menu item to system menu.
  90. // IDM_ABOUTBOX must be in the system command range.
  91. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  92. ASSERT(IDM_ABOUTBOX < 0xF000);
  93. CMenu* pSysMenu = GetSystemMenu(FALSE);
  94. if (pSysMenu != NULL)
  95. {
  96. CString strAboutMenu;
  97. strAboutMenu.LoadString(IDS_ABOUTBOX);
  98. if (!strAboutMenu.IsEmpty())
  99. {
  100. pSysMenu->AppendMenu(MF_SEPARATOR);
  101. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  102. }
  103. }
  104. // Set the icon for this dialog.  The framework does this automatically
  105. //  when the application's main window is not a dialog
  106. SetIcon(m_hIcon, TRUE); // Set big icon
  107. SetIcon(m_hIcon, FALSE); // Set small icon
  108. // TODO: Add extra initialization here
  109. //初始化接口对象
  110. m_pApiClient = new CApiClient((char*)APPKEY,(char*)APPSECRETKEY,(char*)TEST_SERVERURL);
  111. //初始化list
  112. InitLst();
  113. m_ctrCbxWay.SetCurSel(0);
  114. return TRUE;  // return TRUE  unless you set the focus to a control
  115. }
  116. void CPCClientApiDlg::OnSysCommand(UINT nID, LPARAM lParam)
  117. {
  118. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  119. {
  120. CAboutDlg dlgAbout;
  121. dlgAbout.DoModal();
  122. }
  123. else
  124. {
  125. CDialog::OnSysCommand(nID, lParam);
  126. }
  127. }
  128. // If you add a minimize button to your dialog, you will need the code below
  129. //  to draw the icon.  For MFC applications using the document/view model,
  130. //  this is automatically done for you by the framework.
  131. void CPCClientApiDlg::OnPaint() 
  132. {
  133. if (IsIconic())
  134. {
  135. CPaintDC dc(this); // device context for painting
  136. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  137. // Center icon in client rectangle
  138. int cxIcon = GetSystemMetrics(SM_CXICON);
  139. int cyIcon = GetSystemMetrics(SM_CYICON);
  140. CRect rect;
  141. GetClientRect(&rect);
  142. int x = (rect.Width() - cxIcon + 1) / 2;
  143. int y = (rect.Height() - cyIcon + 1) / 2;
  144. // Draw the icon
  145. dc.DrawIcon(x, y, m_hIcon);
  146. }
  147. else
  148. {
  149. CDialog::OnPaint();
  150. }
  151. }
  152. // The system calls this to obtain the cursor to display while the user drags
  153. //  the minimized window.
  154. HCURSOR CPCClientApiDlg::OnQueryDragIcon()
  155. {
  156. return (HCURSOR) m_hIcon;
  157. }
  158. BOOL CPCClientApiDlg::InitLst()
  159. {
  160. DWORD dwStyle;
  161. m_ctrLstValue.InsertColumn(0,_T("序号"),LVCFMT_LEFT,50);
  162. m_ctrLstValue.InsertColumn(1,_T("字段名_Key"),LVCFMT_LEFT,150);
  163. m_ctrLstValue.InsertColumn(2,_T("字段值_Value"),LVCFMT_LEFT,360);
  164. dwStyle = m_ctrLstValue.GetStyle();
  165. dwStyle = LVS_EX_GRIDLINES |LVS_EX_FULLROWSELECT|LVS_SHOWSELALWAYS ;
  166. m_ctrLstValue.SetExtendedStyle(dwStyle);
  167. m_ctrLstValue.SetBkColor(RGB(0xec,0xf1,0xfd));
  168. m_ctrLstValue.SetTextBkColor(RGB(0xfe,0xFF,0xc6));
  169. return TRUE;
  170. }
  171. BOOL CPCClientApiDlg::InsertDataToLst(list<string> lstStrValue)
  172. {
  173. m_ctrLstValue.DeleteAllItems();
  174. if (lstStrValue.empty())
  175. {
  176. return FALSE;
  177. }
  178. int nIndex = 0;
  179. list<string>::iterator lstIT;
  180. for ( lstIT = lstStrValue.begin(); lstIT != lstStrValue.end(); lstIT++)
  181. {
  182. string strTemp;
  183. strTemp = *lstIT;
  184. CString cstr;
  185. cstr.Format("%d",nIndex);
  186. m_ctrLstValue.InsertItem(nIndex, cstr);
  187. m_ctrLstValue.SetItemText(nIndex, 1, m_cstrKey);
  188. m_ctrLstValue.SetItemText(nIndex, 2, strTemp.data());
  189. nIndex++;
  190. TRACE("rn");
  191. TRACE(strTemp.data());
  192. }
  193. TRACE("rn----------------------List-------------------------rn");
  194. return TRUE;
  195. }
  196. void CPCClientApiDlg::OnOK() 
  197. {
  198. if (NULL == m_pApiClient) return;
  199. GetDlgItem(IDOK)->EnableWindow(FALSE);
  200. UpdateData(TRUE);
  201. string  strValue = "";
  202. list<string> lstStrValue;
  203. int  nIndex = m_ctrCbxWay.GetCurSel();
  204. switch(nIndex)
  205. {
  206. case 0: //  登录服务器
  207. strValue = m_pApiClient->LoginUser("murron","murron");
  208. break;
  209. case 1: //  获取全部好友列表
  210. strValue = m_pApiClient->GetAllFrd("147","0","300");
  211. break;
  212. case 2: //  获取分组
  213. strValue = m_pApiClient->GetTeam("147", "0", "2");
  214. break;
  215. case 3: //  获取好友动态
  216. strValue = m_pApiClient->GetFrdNewsFeed("147", "0", "2");
  217. break;
  218. case 4: //  好友空间
  219. strValue = m_pApiClient->GetFrdSpace("147","10");
  220. break;
  221. case 5: // 获取店铺信息
  222. strValue = m_pApiClient->GetStoreMsg("147","3272");
  223. break;
  224. case 6: //  获取店铺所有应用(按照设置方式排行)
  225. strValue = m_pApiClient->GetStoreUse("147","217501","0","2","time","desc");
  226. break;
  227. case 7: // 获取掌柜推荐
  228. strValue = m_pApiClient->GetShopKeeperRecom("147","3272", "0","2");
  229. break;
  230. case 8: // 订阅店铺
  231. strValue = m_pApiClient->SubscribeStore("147","3272");
  232. break;
  233. case 9: // 获取买家须知
  234. strValue = m_pApiClient->GetBuyerNotice("147","327");
  235. break;
  236. case 10: // 获取应用(按照某类行为)
  237. strValue = m_pApiClient->GetMyApp("147","0","2","down");
  238. break;
  239. case 11: // 获取推荐信息(按照范围和排序)
  240. strValue = m_pApiClient->GetRecomMsg("147", "0", "2", "time", "desc", "all");
  241. break;
  242. case 12: // 你可能喜欢的
  243. strValue = m_pApiClient->GuessYouLike("147","3");
  244. break;
  245. case 13: // 获取应用分类列表
  246. strValue = m_pApiClient->GetAppGroup("147", "0", "3");
  247. break;
  248. case 14: // 获取店铺排行(按照各种标准排序)
  249. strValue = m_pApiClient->GetStoreRanking("147","0","2","app","desc");
  250. break;
  251. case 15: // 获取精品店铺列表
  252. strValue = m_pApiClient->GetBoutiqueList("147", "0", "2");
  253. break;
  254. case 16: // 收件箱信息列表
  255. strValue = m_pApiClient->CollectionList("147", "0", "5");
  256. break;
  257. case 17: // 发信息
  258. strValue = m_pApiClient->SendMsg("147","10","测试程序2009");
  259. break;
  260. case 18: // 回复信息
  261. strValue = m_pApiClient->ResendMsg("10","147","10 ReTO 147 好好学习");
  262. break;
  263. case 19: // 应用搜索
  264. break;
  265. case 20: // 店铺搜索
  266. break;
  267. case 21: // 添加收藏(包括应用和店铺)
  268. strValue = m_pApiClient->AddCollection("147","217430","app");
  269. break; 
  270. case 22: // 删除收藏(包括应用和店铺)
  271. strValue = m_pApiClient->DelCollection("147","217430","app");
  272. break;
  273. case 23: // 根据应用ID获取附件ID
  274. strValue = m_pApiClient->GetAffixByApp("147","106");
  275. break;
  276. case 24: // 设置推荐应用(按照范围)
  277. strValue = m_pApiClient->SetRecomUse("147","106","all","10");
  278. break;
  279. case 25: // 评价应用
  280. strValue = m_pApiClient->EvaluateUse("147","106","4.0","good");
  281. break;
  282. case 26: // 获取应用详情
  283. strValue = m_pApiClient->GetUseDetail("147","106");
  284. break;
  285. case 27: // 获取相关应用
  286. strValue = m_pApiClient->GetOtherUse("147","106","0","2");
  287. break;
  288. case 28: // 获取评价详情
  289. strValue = m_pApiClient->GetEvaluateDetail("147","106","0","2");
  290. break;
  291. case 29: // 留言簿
  292. strValue = m_pApiClient->VisitorBook("147","106","0","2");
  293. break;
  294. case 30: // 获取应用排行榜(按照各种标准排序)
  295. strValue = m_pApiClient->GetUseRanking("147","87", "0","2","topCharge","desc");
  296. break;
  297. case 31: // 获取超市动态列表(WEB)
  298. strValue = m_pApiClient->GetStoreDymList("147","0","2");
  299. break;
  300. case 32: // 获取全部个性桌面
  301. strValue = m_pApiClient->GetAllDesktopInfos("tttt","tttt");
  302. break;
  303. case 33: // 删除个性桌面
  304. strValue = m_pApiClient->RemoveDesktopInfo("tttt","tttt","20090806032458578");
  305. break;
  306. case 34: // 上传个性桌面
  307. strValue = m_pApiClient->UpDesktopInfo("tttt","tttt","20090806032458578", "ftp://192.168.191.23//147/20090729200015921.zip");
  308. break;
  309. case 35: // 查询个性桌面
  310. strValue = m_pApiClient->GetDesktopInfos("tttt","tttt","20090806032458578");
  311. break;
  312. case 36: // 购买应用
  313. strValue = m_pApiClient->BuyUse("147","106","244");
  314. break;
  315. case 37: // 下载应用
  316. strValue = m_pApiClient->DownloadUse("147","106","244");
  317. break;
  318. default:  //
  319. break;
  320. };
  321. //分析数据
  322. m_cstrKey.TrimLeft();
  323. m_cstrKey.TrimRight();
  324. lstStrValue.clear();
  325. m_pApiClient->AnalyzeRespMsg(strValue, m_cstrKey, lstStrValue);
  326. //向list控件插入数据
  327. InsertDataToLst(lstStrValue);
  328. GetDlgItem(IDOK)->EnableWindow(TRUE);
  329. //CDialog::OnOK();
  330. }
  331. BOOL CPCClientApiDlg::DestroyWindow() 
  332. {
  333. // TODO: Add your specialized code here and/or call the base class
  334. if (NULL != m_pApiClient)
  335. {
  336. delete m_pApiClient;
  337. m_pApiClient = NULL;
  338. }
  339. return CDialog::DestroyWindow();
  340. }