SecurityPage.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  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. ON_BN_CLICKED(CHECK_CHECKDB, &CSecurityPage::OnBnClickedCheckdb)
  67. ON_EN_CHANGE(ET_CHECKDBTIMEOUT, &CSecurityPage::OnEnChangeCheckdbtimeout)
  68. END_MESSAGE_MAP()
  69. BEGIN_DLGRESIZE_MAP(CSecurityPage)
  70. DLGRESIZE_CONTROL(IDC_BLOCKEDLIST, DLSZ_SIZE_X)
  71. DLGRESIZE_CONTROL(IDC_NONBLOCKEDLIST, DLSZ_SIZE_X)
  72. END_DLGRESIZE_MAP()
  73. /********************************************************************/
  74. /* */
  75. /* Function name : OnInitDialog */
  76. /* Description : Initialize dialog */
  77. /* */
  78. /********************************************************************/
  79. BOOL CSecurityPage::OnInitDialog()
  80. {
  81. CDialogResize::OnInitDialog();
  82. if(g_bReg)GetDlgItem(IDC_VIEW)->EnableWindow(0);
  83. #ifdef CHILD_VERSION
  84. GetDlgItem(IDC_BUTTON6)->ShowWindow(SW_HIDE);
  85. #endif
  86. InitResizing(FALSE, FALSE, WS_CLIPCHILDREN);
  87. m_bBlockAll = AfxGetApp()->GetProfileInt("Settings", "BlockAll", 0);
  88. GetDlgItem(IDC_NONBLOCKEDLIST)->EnableWindow(m_bBlockAll);
  89. GetDlgItem(IDC_ADD_NONBLOCK)->EnableWindow(m_bBlockAll);
  90. GetDlgItem(IDC_EDIT_NONBLOCK)->EnableWindow(m_bBlockAll);
  91. GetDlgItem(IDC_REMOVE_NONBLOCK)->EnableWindow(m_bBlockAll);
  92. GetDlgItem(IDC_BLOCKEDLIST)->EnableWindow(!m_bBlockAll);
  93. GetDlgItem(IDC_ADD_BLOCK)->EnableWindow(!m_bBlockAll);
  94. GetDlgItem(IDC_EDIT_BLOCK)->EnableWindow(!m_bBlockAll);
  95. GetDlgItem(IDC_REMOVE_BLOCK)->EnableWindow(!m_bBlockAll);
  96. GetDlgItem(IDC_STATIC1)->EnableWindow(!m_bBlockAll);
  97. GetDlgItem(IDC_Restart_Btn)->EnableWindow(FALSE);
  98. UpdateData(FALSE);
  99. CStringArray strArray;
  100. theServer.m_SecurityManager.GetBlockedList(strArray);
  101. for (int i=0; i < strArray.GetSize(); i++)
  102. {
  103. m_BlockedList.AddString(strArray[i]);
  104. }
  105. theServer.m_SecurityManager.GetNonBlockedList(strArray);
  106. for (int j=0; j < strArray.GetSize(); j++)
  107. {
  108. m_NonBlockedList.AddString(strArray[j]);
  109. }
  110. // get list of all ip addresses in use by this system (only show first two...)
  111. char szHostName[128];
  112. HOSTENT *lpHost=NULL;
  113. struct sockaddr_in sock;
  114. gethostname(szHostName, sizeof(szHostName));
  115. lpHost = gethostbyname(szHostName);
  116. if (lpHost != NULL)
  117. {
  118. for(int i=0; lpHost->h_addr_list[i] != NULL ;i++)
  119. {
  120. memcpy(&(sock.sin_addr), lpHost->h_addr_list[i], lpHost->h_length);
  121. if (i == 0)
  122. {
  123. SetDlgItemText(IDC_IPADDRESS1, inet_ntoa(sock.sin_addr));
  124. }
  125. else
  126. if (i == 1)
  127. {
  128. SetDlgItemText(IDC_IPADDRESS2, inet_ntoa(sock.sin_addr));
  129. }
  130. }
  131. }
  132. CDatabase *pdb = NULL;
  133. ODBCConnGuard ConnGuard(pdb, -1, 3000);
  134. if ( pdb )
  135. {
  136. CString str = _T("");
  137. CRecordset rcSt(pdb);
  138. rcSt.Open(CRecordset::forwardOnly, _T("select count(*) as cot from [dbo].[user] where [account] = 'lyfzsupport'"));
  139. rcSt.GetFieldValue(_T("cot"), str);
  140. rcSt.Close();
  141. BOOL bCheckSupport = atoi(str);
  142. ((CButton*)GetDlgItem(CHECK_TECHSUPPORT))->SetCheck(bCheckSupport);
  143. ((CButton*)GetDlgItem(CHECK_ENABLECLOUND))->SetCheck(g_bEnableClound);
  144. ((CButton*)GetDlgItem(CHECK_EXPORTBARCODE))->SetCheck(g_bExportBarCode);
  145. }
  146. if ( g_bCheckdb )
  147. {
  148. ((CButton*)GetDlgItem(CHECK_CHECKDB))->SetCheck(TRUE);
  149. GetDlgItem(ET_CHECKDBTIMEOUT)->EnableWindow(TRUE);
  150. SetDlgItemInt(ET_CHECKDBTIMEOUT, g_dwCheckdbTimeOut);
  151. }
  152. else
  153. {
  154. ((CButton*)GetDlgItem(CHECK_CHECKDB))->SetCheck(FALSE);
  155. GetDlgItem(ET_CHECKDBTIMEOUT)->EnableWindow(FALSE);
  156. SetDlgItemInt(ET_CHECKDBTIMEOUT, 0);
  157. }
  158. return TRUE;
  159. }
  160. /********************************************************************/
  161. /* */
  162. /* Function name : OnDestroy */
  163. /* Description : Dialog is about to be destroyed. */
  164. /* */
  165. /********************************************************************/
  166. void CSecurityPage::OnDestroy()
  167. {
  168. UpdateData();
  169. AfxGetApp()->WriteProfileInt("Settings", "BlockAll", m_bBlockAll);
  170. CDialogResize::OnDestroy();
  171. }
  172. BOOL g_bConvertHisAll=0;
  173. extern CDBServerDlg *g_pMainWnd;
  174. void CSecurityPage::OnButton1()
  175. {
  176. // TODO: Add your control notification handler code here
  177. if(AfxMessageBox("温馨提示:此操作可能需要1-N小时, 应该在晚间无人操作软件时进行, 继续吗?", MB_YESNO|MB_ICONSTOP)!=IDYES)return;
  178. g_bConvertHisAll=1;
  179. g_pMainWnd->CheckHistoryData();
  180. }
  181. void CSecurityPage::OnButton4()
  182. {
  183. // TODO: Add your control notification handler code here
  184. CDatabase *pdb = NULL;
  185. ODBCConnGuard ConnGuard(pdb, -1, 3000);
  186. g_pMainWnd->MyExecuteSQL(pdb, "delete from singleincomemoney where id in(select id from singleincome where sale2type='' or sale2type is null)");
  187. g_pMainWnd->MyExecuteSQL(pdb, "delete from [singleincomemoney] where [paytype]='' or [paytype] is null");
  188. AfxMessageBox("命令已执行");
  189. }
  190. void CSecurityPage::OnButton5()
  191. {
  192. // TODO: Add your control notification handler code here
  193. CDatabase *pdb = NULL;
  194. ODBCConnGuard ConnGuard(pdb, -1, 3000);
  195. g_pMainWnd->MyExecuteSQL(pdb, "update dindanjd set bookingdate=date where bookingdate is null");
  196. g_pMainWnd->MyExecuteSQL(pdb, "update dindanjd set bookingdate=(select time2 from dindan where dindanjd.id=dindan.id) where bookingdate is null");
  197. g_pMainWnd->MyExecuteSQL(pdb, "update dindanjd set bookingdate=(select time2 from dindan where dindanjd.id=dindan.id) where bookingdate='' ");
  198. AfxMessageBox("命令已执行");
  199. }
  200. BOOL CSecurityPage::PreTranslateMessage(MSG* pMsg)
  201. {
  202. // TODO: Add your specialized code here and/or call the base class
  203. if(pMsg->message==WM_KEYDOWN)
  204. {
  205. }
  206. return CDialogResize::PreTranslateMessage(pMsg);
  207. }
  208. void CSecurityPage::OnView()
  209. {
  210. // TODO: Add your control notification handler code here
  211. InputCode dlg;
  212. dlg.DoModal ();
  213. }
  214. void CSecurityPage::OnButton6()
  215. {
  216. // TODO: Add your control notification handler code here
  217. g_pMainWnd->RestoreHQ();
  218. }
  219. //insert into client(id,name1,name2) select id,name1,name2 FROM dindan where id not in(select [id] from [db].[dbo].[client])
  220. void CSecurityPage::OnButton7()
  221. {
  222. // TODO: Add your control notification handler code here
  223. g_pMainWnd->ManagePhoto();
  224. }
  225. void CSecurityPage::OnBnClickedView2()
  226. {
  227. // TODO: 在此添加控件通知处理程序代码
  228. CDlgShowNetShareInfo dlg;
  229. dlg.DoModal();
  230. }
  231. //生成小图按扭
  232. void CSecurityPage::OnBnClickedCreatePhoto()
  233. {
  234. if(CreateSmallPhoto::GetInstance()->IsCreating())
  235. {
  236. MessageBox(_T("生成小图数量较多请稍后再试"));
  237. return;
  238. }
  239. ((CButton*)GetDlgItem(IDC_CREATEPHOTO_BTN))->EnableWindow(FALSE);
  240. CreateSmallPhoto::GetInstance()->StartThread();
  241. ((CButton*)GetDlgItem(IDC_CREATEPHOTO_BTN))->EnableWindow(TRUE);
  242. }
  243. //管理删除相片
  244. void CSecurityPage::OnBnClickedButton8()
  245. {
  246. /*
  247. // TODO: 在此添加控件通知处理程序代码
  248. CPhotoDelMgr dlg;
  249. TCHAR szConnect[MAX_PATH] = {0};
  250. if (g_dwDBServerPort)
  251. {
  252. _stprintf_s(szConnect, _T("driver={SQL Server};Server=%s,%d;database=%s;uid=%s;pwd=%s"),
  253. g_szDBSource, g_dwDBServerPort, g_szDBName, g_szDBAccount, g_szDBPassWord);
  254. }
  255. else
  256. {
  257. _stprintf_s(szConnect, _T("driver={SQL Server};Server=%s;database=%s;uid=%s;pwd=%s"),
  258. g_szDBSource, g_szDBName, g_szDBAccount, g_szDBPassWord);
  259. }
  260. if(!dlg.OpenDb(szConnect))
  261. MessageBox(_T("读取数据失败!"));
  262. dlg.DoModal();
  263. */
  264. }
  265. void CSecurityPage::OnBnClickedSysconfig() // 系统设置;
  266. {
  267. CDlgSetIni dlg;
  268. dlg.DoModal();
  269. }
  270. void CSecurityPage::OnBnClickedTechsupport() // 启用技术支持账号;
  271. {
  272. BOOL bCheckTechSupport = FALSE;
  273. bCheckTechSupport = ((CButton*)(GetDlgItem(CHECK_TECHSUPPORT)))->GetCheck();
  274. CTime ct = CTime::GetCurrentTime();
  275. CString strSQL = _T("");
  276. CDatabase *pdb = NULL;
  277. ODBCConnGuard ConnGuard(pdb, -1, 3000);
  278. if ( pdb == NULL )
  279. return;
  280. if ( bCheckTechSupport == TRUE )
  281. {// 启用账号;
  282. strSQL = _T("INSERT [user] ([account],[name],[psw],[rights],[rights2],[discount],[discount2]) VALUES "
  283. "( 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')");
  284. pdb->ExecuteSQL(strSQL);
  285. strSQL.Format(_T("INSERT [log] ([date],[datetime],[content]) VALUES ( '%s', '%s', '%s')"),
  286. ct.Format(_T("%Y-%m-%d")),
  287. ct.Format(_T("%Y-%m-%d %H:%M:%S")), _T("开启技术支持账号!") );
  288. pdb->ExecuteSQL(strSQL);
  289. }
  290. else
  291. {// 删除账号;
  292. strSQL = _T("delete from [user] where [account] = 'lyfzsupport' ");
  293. pdb->ExecuteSQL(strSQL);
  294. strSQL.Format(_T("INSERT [log] ([date],[datetime],[content]) VALUES ( '%s', '%s', '%s')"),
  295. ct.Format(_T("%Y-%m-%d")),
  296. ct.Format(_T("%Y-%m-%d %H:%M:%S")), _T("关闭技术支持账号!") );
  297. pdb->ExecuteSQL(strSQL);
  298. }
  299. }
  300. void CSecurityPage::OnBnClickedEnableclound()
  301. {
  302. UpdateData();
  303. g_bEnableClound = ((CButton*)(GetDlgItem(CHECK_ENABLECLOUND)))->GetCheck();
  304. TCHAR szFile[MAX_PATH] = {0};
  305. _stprintf_s(szFile, _T("%s\\ServiceInfo.ini"), g_ModulePath);
  306. WritePrivateProfileString(_T("SystemInfo"), _T("EnableClound"), g_bEnableClound ? _T("1") : _T("0"), szFile);
  307. }
  308. void CSecurityPage::OnBnClickedExportbarcode()
  309. {
  310. UpdateData();
  311. g_bExportBarCode = ((CButton*)(GetDlgItem(CHECK_EXPORTBARCODE)))->GetCheck();
  312. TCHAR szFile[MAX_PATH] = {0};
  313. _stprintf_s(szFile, _T("%s\\ServiceInfo.ini"), g_ModulePath);
  314. WritePrivateProfileString(_T("SystemInfo"), _T("ExportBarCode"), g_bExportBarCode ? _T("1") : _T("0"), szFile);
  315. }
  316. void CSecurityPage::OnBnClickedCheckdb()
  317. {
  318. // TODO: 在此添加控件通知处理程序代码
  319. UpdateData();
  320. g_bCheckdb = ((CButton*)GetDlgItem(CHECK_CHECKDB))->GetCheck();
  321. TCHAR szFile[MAX_PATH] = {0};
  322. _stprintf_s(szFile, _T("%s\\ServiceInfo.ini"), g_ModulePath);
  323. if ( g_bCheckdb )
  324. {
  325. GetDlgItem(ET_CHECKDBTIMEOUT)->EnableWindow(TRUE);
  326. SetDlgItemInt(ET_CHECKDBTIMEOUT,30);
  327. WritePrivateProfileString(_T("SystemInfo"), _T("CheckdbTimeOut"), _T("30"), szFile);
  328. HANDLE hThead = CreateThread(NULL, 0, CheckdbThread, NULL, 0, NULL);
  329. if ( hThead )
  330. CloseHandle(hThead);
  331. }
  332. else
  333. {
  334. g_bIsCatalogDamage = FALSE;
  335. GetDlgItem(ET_CHECKDBTIMEOUT)->EnableWindow(FALSE);
  336. SetDlgItemInt(ET_CHECKDBTIMEOUT,0);
  337. WritePrivateProfileString(_T("SystemInfo"), _T("CheckdbTimeOut"), _T("0"), szFile);
  338. }
  339. WritePrivateProfileString(_T("SystemInfo"), _T("Checkdb"), g_bCheckdb ? _T("1") : _T("0"), szFile);
  340. }
  341. void CSecurityPage::OnEnChangeCheckdbtimeout()
  342. {
  343. // TODO: 如果该控件是 RICHEDIT 控件,它将不
  344. // 发送此通知,除非重写 CDialogResize::OnInitDialog()
  345. // 函数并调用 CRichEditCtrl().SetEventMask(),
  346. // 同时将 ENM_CHANGE 标志“或”运算到掩码中。
  347. g_dwCheckdbTimeOut = GetDlgItemInt(ET_CHECKDBTIMEOUT);
  348. g_dwCheckdbTimeOut = g_dwCheckdbTimeOut ? g_dwCheckdbTimeOut : 1;
  349. TCHAR szFile[MAX_PATH] = {0};
  350. _stprintf_s(szFile, _T("%s\\ServiceInfo.ini"), g_ModulePath);
  351. TCHAR szCheckTimeout[10] = {0};
  352. _itoa_s(g_dwCheckdbTimeOut, szCheckTimeout, 10);
  353. WritePrivateProfileString(_T("SystemInfo"), _T("CheckdbTimeOut"), szCheckTimeout, szFile);
  354. HANDLE hThead = CreateThread(NULL, 0, CheckdbThread, NULL, 0, NULL);
  355. if ( hThead )
  356. CloseHandle(hThead);
  357. // TODO: 在此添加控件通知处理程序代码
  358. }