SecurityPage.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. /****************************************************************/
  2. /* */
  3. /* SecurityPage.cpp */
  4. /* */
  5. /* Implementation of the CSecurityPage class. */
  6. /* This class is a part of the FTP Server. */
  7. /* */
  8. /* Programmed by LYFZ van der Meer */
  9. /* Copyright LYFZ Software Solutions 2002 */
  10. /* http://www.LYFZvandermeer.nl */
  11. /* */
  12. /* Last updated: 10 july 2002 */
  13. /* */
  14. /****************************************************************/
  15. #include "stdafx.h"
  16. #include "DBServer.h"
  17. #include "theDBServer.h"
  18. #include "SecurityPage.h"
  19. //#include "AddIPDlg.h"
  20. #include "DBServerDlg.h"
  21. extern CtheDBServer theServer;
  22. #include "InputCode.h"
  23. #include "DlgShowNetShareInfo.h"
  24. #include "CreateSmallPhoto.h"
  25. #include "PhotoDelMgr.h"
  26. #include "PhotoBackupMgr.h"
  27. #include "DlgSetIni.h"
  28. #ifdef _DEBUG
  29. #define new DEBUG_NEW
  30. #undef THIS_FILE
  31. static char THIS_FILE[] = __FILE__;
  32. #endif
  33. CSecurityPage::CSecurityPage(CWnd* pParent /*=NULL*/)
  34. : CDialogResize(CSecurityPage::IDD, pParent)
  35. {
  36. //{{AFX_DATA_INIT(CSecurityPage)
  37. m_bBlockAll = FALSE;
  38. //}}AFX_DATA_INIT
  39. }
  40. void CSecurityPage::DoDataExchange(CDataExchange* pDX)
  41. {
  42. CDialogResize::DoDataExchange(pDX);
  43. //{{AFX_DATA_MAP(CSecurityPage)
  44. DDX_Control(pDX, IDC_BLOCKEDLIST, m_BlockedList);
  45. DDX_Control(pDX, IDC_NONBLOCKEDLIST, m_NonBlockedList);
  46. DDX_Check(pDX, IDC_BLOCK_ALL, m_bBlockAll);
  47. //}}AFX_DATA_MAP
  48. }
  49. BEGIN_MESSAGE_MAP(CSecurityPage, CDialogResize)
  50. //{{AFX_MSG_MAP(CSecurityPage)
  51. ON_WM_DESTROY()
  52. ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
  53. ON_BN_CLICKED(IDC_BUTTON4, OnButton4)
  54. ON_BN_CLICKED(IDC_BUTTON5, OnButton5)
  55. ON_BN_CLICKED(IDC_VIEW, OnView)
  56. ON_BN_CLICKED(IDC_BUTTON6, OnButton6)
  57. ON_BN_CLICKED(IDC_BUTTON7, OnButton7)
  58. //}}AFX_MSG_MAP
  59. ON_BN_CLICKED(IDC_VIEW2, &CSecurityPage::OnBnClickedView2)
  60. ON_BN_CLICKED(IDC_CREATEPHOTO_BTN, &CSecurityPage::OnBnClickedCreatePhoto)
  61. ON_BN_CLICKED(IDC_BUTTON8, &CSecurityPage::OnBnClickedButton8)
  62. ON_BN_CLICKED(BTN_SYSCONFIG, &CSecurityPage::OnBnClickedSysconfig)
  63. ON_BN_CLICKED(CHECK_TECHSUPPORT, &CSecurityPage::OnBnClickedTechsupport)
  64. ON_BN_CLICKED(CHECK_ENABLECLOUND, &CSecurityPage::OnBnClickedEnableclound)
  65. ON_BN_CLICKED(CHECK_EXPORTBARCODE, &CSecurityPage::OnBnClickedExportbarcode)
  66. END_MESSAGE_MAP()
  67. BEGIN_DLGRESIZE_MAP(CSecurityPage)
  68. DLGRESIZE_CONTROL(IDC_BLOCKEDLIST, DLSZ_SIZE_X)
  69. DLGRESIZE_CONTROL(IDC_NONBLOCKEDLIST, DLSZ_SIZE_X)
  70. END_DLGRESIZE_MAP()
  71. /********************************************************************/
  72. /* */
  73. /* Function name : OnInitDialog */
  74. /* Description : Initialize dialog */
  75. /* */
  76. /********************************************************************/
  77. BOOL CSecurityPage::OnInitDialog()
  78. {
  79. CDialogResize::OnInitDialog();
  80. if(g_bReg)GetDlgItem(IDC_VIEW)->EnableWindow(0);
  81. #ifdef CHILD_VERSION
  82. GetDlgItem(IDC_BUTTON6)->ShowWindow(SW_HIDE);
  83. #endif
  84. InitResizing(FALSE, FALSE, WS_CLIPCHILDREN);
  85. m_bBlockAll = AfxGetApp()->GetProfileInt("Settings", "BlockAll", 0);
  86. GetDlgItem(IDC_NONBLOCKEDLIST)->EnableWindow(m_bBlockAll);
  87. GetDlgItem(IDC_ADD_NONBLOCK)->EnableWindow(m_bBlockAll);
  88. GetDlgItem(IDC_EDIT_NONBLOCK)->EnableWindow(m_bBlockAll);
  89. GetDlgItem(IDC_REMOVE_NONBLOCK)->EnableWindow(m_bBlockAll);
  90. GetDlgItem(IDC_BLOCKEDLIST)->EnableWindow(!m_bBlockAll);
  91. GetDlgItem(IDC_ADD_BLOCK)->EnableWindow(!m_bBlockAll);
  92. GetDlgItem(IDC_EDIT_BLOCK)->EnableWindow(!m_bBlockAll);
  93. GetDlgItem(IDC_REMOVE_BLOCK)->EnableWindow(!m_bBlockAll);
  94. GetDlgItem(IDC_STATIC1)->EnableWindow(!m_bBlockAll);
  95. GetDlgItem(IDC_Restart_Btn)->EnableWindow(FALSE);
  96. UpdateData(FALSE);
  97. CStringArray strArray;
  98. theServer.m_SecurityManager.GetBlockedList(strArray);
  99. for (int i=0; i < strArray.GetSize(); i++)
  100. {
  101. m_BlockedList.AddString(strArray[i]);
  102. }
  103. theServer.m_SecurityManager.GetNonBlockedList(strArray);
  104. for (int j=0; j < strArray.GetSize(); j++)
  105. {
  106. m_NonBlockedList.AddString(strArray[j]);
  107. }
  108. // get list of all ip addresses in use by this system (only show first two...)
  109. char szHostName[128];
  110. HOSTENT *lpHost=NULL;
  111. struct sockaddr_in sock;
  112. gethostname(szHostName, sizeof(szHostName));
  113. lpHost = gethostbyname(szHostName);
  114. if (lpHost != NULL)
  115. {
  116. for(int i=0; lpHost->h_addr_list[i] != NULL ;i++)
  117. {
  118. memcpy(&(sock.sin_addr), lpHost->h_addr_list[i], lpHost->h_length);
  119. if (i == 0)
  120. {
  121. SetDlgItemText(IDC_IPADDRESS1, inet_ntoa(sock.sin_addr));
  122. }
  123. else
  124. if (i == 1)
  125. {
  126. SetDlgItemText(IDC_IPADDRESS2, inet_ntoa(sock.sin_addr));
  127. }
  128. }
  129. }
  130. if ( g_db.IsOpen() )
  131. {
  132. CString str = _T("");
  133. CRecordset rcSt(&g_db);
  134. rcSt.Open(CRecordset::forwardOnly, _T("select count(*) as cot from [dbo].[user] where [account] = 'lyfzsupport'"));
  135. rcSt.GetFieldValue(_T("cot"), str);
  136. rcSt.Close();
  137. BOOL bCheckSupport = atoi(str);
  138. ((CButton*)GetDlgItem(CHECK_TECHSUPPORT))->SetCheck(bCheckSupport);
  139. ((CButton*)GetDlgItem(CHECK_ENABLECLOUND))->SetCheck(g_bEnableClound);
  140. ((CButton*)GetDlgItem(CHECK_EXPORTBARCODE))->SetCheck(g_bExportBarCode);
  141. }
  142. return TRUE;
  143. }
  144. /********************************************************************/
  145. /* */
  146. /* Function name : OnDestroy */
  147. /* Description : Dialog is about to be destroyed. */
  148. /* */
  149. /********************************************************************/
  150. void CSecurityPage::OnDestroy()
  151. {
  152. UpdateData();
  153. AfxGetApp()->WriteProfileInt("Settings", "BlockAll", m_bBlockAll);
  154. CDialogResize::OnDestroy();
  155. }
  156. BOOL g_bConvertHisAll=0;
  157. extern CDBServerDlg *g_pMainWnd;
  158. void CSecurityPage::OnButton1()
  159. {
  160. // TODO: Add your control notification handler code here
  161. if(AfxMessageBox("温馨提示:此操作可能需要1-N小时, 应该在晚间无人操作软件时进行, 继续吗?", MB_YESNO|MB_ICONSTOP)!=IDYES)return;
  162. g_bConvertHisAll=1;
  163. g_pMainWnd->CheckHistoryData();
  164. }
  165. void CSecurityPage::OnButton4()
  166. {
  167. // TODO: Add your control notification handler code here
  168. g_pMainWnd->MyExecuteSQL(&g_db, "delete from singleincomemoney where id in(select id from singleincome where sale2type='' or sale2type is null)");
  169. g_pMainWnd->MyExecuteSQL(&g_db, "delete from [singleincomemoney] where [paytype]='' or [paytype] is null");
  170. AfxMessageBox("命令已执行");
  171. }
  172. void CSecurityPage::OnButton5()
  173. {
  174. // TODO: Add your control notification handler code here
  175. g_pMainWnd->MyExecuteSQL(&g_db, "update dindanjd set bookingdate=date where bookingdate is null");
  176. g_pMainWnd->MyExecuteSQL(&g_db, "update dindanjd set bookingdate=(select time2 from dindan where dindanjd.id=dindan.id) where bookingdate is null");
  177. g_pMainWnd->MyExecuteSQL(&g_db, "update dindanjd set bookingdate=(select time2 from dindan where dindanjd.id=dindan.id) where bookingdate='' ");
  178. AfxMessageBox("命令已执行");
  179. }
  180. BOOL CSecurityPage::PreTranslateMessage(MSG* pMsg)
  181. {
  182. // TODO: Add your specialized code here and/or call the base class
  183. if(pMsg->message==WM_KEYDOWN)
  184. {
  185. }
  186. return CDialogResize::PreTranslateMessage(pMsg);
  187. }
  188. void CSecurityPage::OnView()
  189. {
  190. // TODO: Add your control notification handler code here
  191. InputCode dlg;
  192. dlg.DoModal ();
  193. }
  194. void CSecurityPage::OnButton6()
  195. {
  196. // TODO: Add your control notification handler code here
  197. g_pMainWnd->RestoreHQ();
  198. }
  199. //insert into client(id,name1,name2) select id,name1,name2 FROM dindan where id not in(select [id] from [db].[dbo].[client])
  200. void CSecurityPage::OnButton7()
  201. {
  202. // TODO: Add your control notification handler code here
  203. g_pMainWnd->ManagePhoto();
  204. }
  205. void CSecurityPage::OnBnClickedView2()
  206. {
  207. // TODO: 在此添加控件通知处理程序代码
  208. CDlgShowNetShareInfo dlg;
  209. dlg.DoModal();
  210. }
  211. //生成小图按扭
  212. void CSecurityPage::OnBnClickedCreatePhoto()
  213. {
  214. if(CreateSmallPhoto::GetInstance()->IsCreating())
  215. {
  216. MessageBox(_T("生成小图数量较多请稍后再试"));
  217. return;
  218. }
  219. ((CButton*)GetDlgItem(IDC_CREATEPHOTO_BTN))->EnableWindow(FALSE);
  220. CreateSmallPhoto::GetInstance()->StartThread();
  221. ((CButton*)GetDlgItem(IDC_CREATEPHOTO_BTN))->EnableWindow(TRUE);
  222. }
  223. //管理删除相片
  224. void CSecurityPage::OnBnClickedButton8()
  225. {
  226. /*
  227. // TODO: 在此添加控件通知处理程序代码
  228. CPhotoDelMgr dlg;
  229. TCHAR szConnect[MAX_PATH] = {0};
  230. if (g_dwDBServerPort)
  231. {
  232. _stprintf_s(szConnect, _T("driver={SQL Server};Server=%s,%d;database=%s;uid=%s;pwd=%s"),
  233. g_szDBSource, g_dwDBServerPort, g_szDBName, g_szDBAccount, g_szDBPassWord);
  234. }
  235. else
  236. {
  237. _stprintf_s(szConnect, _T("driver={SQL Server};Server=%s;database=%s;uid=%s;pwd=%s"),
  238. g_szDBSource, g_szDBName, g_szDBAccount, g_szDBPassWord);
  239. }
  240. if(!dlg.OpenDb(szConnect))
  241. MessageBox(_T("读取数据失败!"));
  242. dlg.DoModal();
  243. */
  244. }
  245. void CSecurityPage::OnBnClickedSysconfig() // 系统设置;
  246. {
  247. CDlgSetIni dlg;
  248. dlg.DoModal();
  249. }
  250. void CSecurityPage::OnBnClickedTechsupport() // 启用技术支持账号;
  251. {
  252. BOOL bCheckTechSupport = FALSE;
  253. bCheckTechSupport = ((CButton*)(GetDlgItem(CHECK_TECHSUPPORT)))->GetCheck();
  254. CTime ct = CTime::GetCurrentTime();
  255. CString strSQL = _T("");
  256. if ( bCheckTechSupport == TRUE )
  257. {// 启用账号;
  258. strSQL = _T("INSERT [user] ([account],[name],[psw],[rights],[rights2],[discount],[discount2]) VALUES "
  259. "( N'lyfzsupport',N'技术支持',N'918d07f6473be88fd1a59b9bb24b3c7d',N'11111111111111111111111111111111111111111111111111111111111111',N'*门市流程;1;开单;拍照;修片;选片;精修;设计;刻盘;相片冲印;发片/取件;数码安排;*财务管理;1;订单收款;其它二销;现金支出;其它收入;提成比例;计件提成;工资管理;员工奖罚;*统计查询;1;日财务表;月财务表;年财务表;年财务图表;订单图表;成本核算;工资报表;员工业绩;员工资料;员工奖惩;客户区域;* 短信管理 ;1;短信群发;短信发送;流程短信;员工短信;发送记录;短信设置;*会员管理;1;金卡会员;现金子卡;金卡图表;积分短信;蓝钻会员;转介绍返现;转介绍图表;积分设置;*礼服管理;1;礼服录入;礼服查看;礼服出租;撞期预警;礼服图片;*库存管理;1;入库单;出库单;库存查询;商品图表;固定资产管理;*客户管理;1;订单客户;老客户;意向客户;客户流失;客户来源;*来电精灵;1;客户来电;拨出电话;未接来电;*员工考勤;1;考勤记录;月统计;时间设置;排班设置;*客户服务;1;满意度;满意度汇总;*微信公众号;1;公众号设置;模板消息设置;推送记录;',N'0.0',N'0.0')");
  260. g_db.ExecuteSQL(strSQL);
  261. strSQL.Format(_T("INSERT [log] ([date],[datetime],[content]) VALUES ( '%s', '%s', '%s')"),
  262. ct.Format(_T("%Y-%m-%d")),
  263. ct.Format(_T("%Y-%m-%d %H:%M:%S")), _T("开启技术支持账号!") );
  264. g_db.ExecuteSQL(strSQL);
  265. }
  266. else
  267. {// 删除账号;
  268. strSQL = _T("delete from [user] where [account] = 'lyfzsupport' ");
  269. g_db.ExecuteSQL(strSQL);
  270. strSQL.Format(_T("INSERT [log] ([date],[datetime],[content]) VALUES ( '%s', '%s', '%s')"),
  271. ct.Format(_T("%Y-%m-%d")),
  272. ct.Format(_T("%Y-%m-%d %H:%M:%S")), _T("关闭技术支持账号!") );
  273. g_db.ExecuteSQL(strSQL);
  274. }
  275. }
  276. void CSecurityPage::OnBnClickedEnableclound()
  277. {
  278. UpdateData();
  279. g_bEnableClound = ((CButton*)(GetDlgItem(CHECK_ENABLECLOUND)))->GetCheck();
  280. TCHAR szFile[MAX_PATH] = {0};
  281. _stprintf_s(szFile, _T("%s\\ServiceInfo.ini"), g_ModulePath);
  282. WritePrivateProfileString(_T("SystemInfo"), _T("EnableClound"), g_bEnableClound ? _T("1") : _T("0"), szFile);
  283. }
  284. void CSecurityPage::OnBnClickedExportbarcode()
  285. {
  286. UpdateData();
  287. g_bExportBarCode = ((CButton*)(GetDlgItem(CHECK_EXPORTBARCODE)))->GetCheck();
  288. TCHAR szFile[MAX_PATH] = {0};
  289. _stprintf_s(szFile, _T("%s\\ServiceInfo.ini"), g_ModulePath);
  290. WritePrivateProfileString(_T("SystemInfo"), _T("ExportBarCode"), g_bExportBarCode ? _T("1") : _T("0"), szFile);
  291. }