123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427 |
- #include "stdafx.h"
- #include "LYFZIPReceiveApp.h"
- #include "LYFZIPReceive.h"
- #include "SecurityPage.h"
- #include "AddIPDlg.h"
- extern CLYFZIPReceive theServer;
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- CSecurityPage::CSecurityPage(CWnd* pParent )
- : CDialogResize(CSecurityPage::IDD, pParent)
- {
-
- m_bBlockAll = FALSE;
-
- }
- void CSecurityPage::DoDataExchange(CDataExchange* pDX)
- {
- CDialogResize::DoDataExchange(pDX);
-
- DDX_Control(pDX, IDC_BLOCKEDLIST, m_BlockedList);
- DDX_Control(pDX, IDC_NONBLOCKEDLIST, m_NonBlockedList);
- DDX_Check(pDX, IDC_BLOCK_ALL, m_bBlockAll);
-
- }
- BEGIN_MESSAGE_MAP(CSecurityPage, CDialogResize)
-
- ON_BN_CLICKED(IDC_BLOCK_ALL, OnBlockAll)
- ON_WM_DESTROY()
- ON_BN_CLICKED(IDC_ADD_BLOCK, OnAddBlock)
- ON_BN_CLICKED(IDC_EDIT_BLOCK, OnEditBlock)
- ON_BN_CLICKED(IDC_ADD_NONBLOCK, OnAddNonblock)
- ON_BN_CLICKED(IDC_EDIT_NONBLOCK, OnEditNonblock)
- ON_BN_CLICKED(IDC_REMOVE_BLOCK, OnRemoveBlock)
- ON_BN_CLICKED(IDC_REMOVE_NONBLOCK, OnRemoveNonblock)
- ON_LBN_DBLCLK(IDC_BLOCKEDLIST, OnDblclkBlockedlist)
- ON_LBN_DBLCLK(IDC_NONBLOCKEDLIST, OnDblclkNonblockedlist)
-
- END_MESSAGE_MAP()
- BEGIN_DLGRESIZE_MAP(CSecurityPage)
- DLGRESIZE_CONTROL(IDC_BLOCKEDLIST, DLSZ_SIZE_X)
- DLGRESIZE_CONTROL(IDC_NONBLOCKEDLIST, DLSZ_SIZE_X)
- END_DLGRESIZE_MAP()
- BOOL CSecurityPage::OnInitDialog()
- {
- CDialogResize::OnInitDialog();
-
- InitResizing(FALSE, FALSE, WS_CLIPCHILDREN);
- m_bBlockAll = AfxGetApp()->GetProfileInt("Settings", "BlockAll", 0);
- GetDlgItem(IDC_NONBLOCKEDLIST)->EnableWindow(m_bBlockAll);
- GetDlgItem(IDC_ADD_NONBLOCK)->EnableWindow(m_bBlockAll);
- GetDlgItem(IDC_EDIT_NONBLOCK)->EnableWindow(m_bBlockAll);
- GetDlgItem(IDC_REMOVE_NONBLOCK)->EnableWindow(m_bBlockAll);
- GetDlgItem(IDC_BLOCKEDLIST)->EnableWindow(!m_bBlockAll);
- GetDlgItem(IDC_ADD_BLOCK)->EnableWindow(!m_bBlockAll);
- GetDlgItem(IDC_EDIT_BLOCK)->EnableWindow(!m_bBlockAll);
- GetDlgItem(IDC_REMOVE_BLOCK)->EnableWindow(!m_bBlockAll);
- GetDlgItem(IDC_STATIC1)->EnableWindow(!m_bBlockAll);
- UpdateData(FALSE);
- CStringArray strArray;
- theServer.m_SecurityManager.GetBlockedList(strArray);
- for (int i=0; i < strArray.GetSize(); i++)
- {
- m_BlockedList.AddString(strArray[i]);
- }
- theServer.m_SecurityManager.GetNonBlockedList(strArray);
- for (int j=0; j < strArray.GetSize(); j++)
- {
- m_NonBlockedList.AddString(strArray[j]);
- }
-
- char szHostName[128];
- HOSTENT *lpHost=NULL;
- struct sockaddr_in sock;
- gethostname(szHostName, sizeof(szHostName));
- lpHost = gethostbyname(szHostName);
- if (lpHost != NULL)
- {
- for(int i=0; lpHost->h_addr_list[i] != NULL ;i++)
- {
- memcpy(&(sock.sin_addr), lpHost->h_addr_list[i], lpHost->h_length);
- if (i == 0)
- {
- SetDlgItemText(IDC_IPADDRESS1, inet_ntoa(sock.sin_addr));
- }
- else
- if (i == 1)
- {
- SetDlgItemText(IDC_IPADDRESS2, inet_ntoa(sock.sin_addr));
- }
- }
- }
- return TRUE;
- }
- void CSecurityPage::OnDestroy()
- {
- UpdateData();
- AfxGetApp()->WriteProfileInt("Settings", "BlockAll", m_bBlockAll);
- CDialogResize::OnDestroy();
- }
- void CSecurityPage::OnBlockAll()
- {
- UpdateData();
-
- GetDlgItem(IDC_NONBLOCKEDLIST)->EnableWindow(m_bBlockAll);
- GetDlgItem(IDC_ADD_NONBLOCK)->EnableWindow(m_bBlockAll);
- GetDlgItem(IDC_EDIT_NONBLOCK)->EnableWindow(m_bBlockAll);
- GetDlgItem(IDC_REMOVE_NONBLOCK)->EnableWindow(m_bBlockAll);
- GetDlgItem(IDC_BLOCKEDLIST)->EnableWindow(!m_bBlockAll);
- GetDlgItem(IDC_ADD_BLOCK)->EnableWindow(!m_bBlockAll);
- GetDlgItem(IDC_EDIT_BLOCK)->EnableWindow(!m_bBlockAll);
- GetDlgItem(IDC_REMOVE_BLOCK)->EnableWindow(!m_bBlockAll);
- GetDlgItem(IDC_STATIC1)->EnableWindow(!m_bBlockAll);
- theServer.SetSecurityMode(!m_bBlockAll);
- }
- void CSecurityPage::OnAddBlock()
- {
- CAddIPDlg dlg;
- if (dlg.DoModal() == IDOK)
- {
- for (int i=0; i < m_BlockedList.GetCount(); i++)
- {
- CString strText;
- m_BlockedList.GetText(i, strText);
- if (strText.CompareNoCase(dlg.m_strIPaddress) == 0)
- {
-
- return;
- }
- }
- int nIndex = m_BlockedList.AddString(dlg.m_strIPaddress);
- m_BlockedList.SetCurSel(nIndex);
-
- UpdateSecurityData(0);
- }
- }
- void CSecurityPage::OnEditBlock()
- {
- int nIndex = m_BlockedList.GetCurSel();
- if (nIndex == -1)
- return;
- CAddIPDlg dlg;
- dlg.m_strTitle = "Edit IP address";
- m_BlockedList.GetText(nIndex, dlg.m_strIPaddress);
- if (dlg.DoModal() == IDOK)
- {
- for (int i=0; i < m_BlockedList.GetCount(); i++)
- {
- CString strText;
- m_BlockedList.GetText(i, strText);
- if (strText.CompareNoCase(dlg.m_strIPaddress) == 0)
- {
-
- return;
- }
- }
- m_BlockedList.DeleteString(nIndex);
- nIndex = m_BlockedList.AddString(dlg.m_strIPaddress);
- m_BlockedList.SetCurSel(nIndex);
-
- UpdateSecurityData(0);
- }
- }
- void CSecurityPage::OnRemoveBlock()
- {
- int nIndex = m_BlockedList.GetCurSel();
- if (nIndex == -1)
- return;
- m_BlockedList.DeleteString(nIndex);
- m_BlockedList.SetCurSel(0);
- UpdateSecurityData(0);
- }
- void CSecurityPage::OnAddNonblock()
- {
- CAddIPDlg dlg;
- if (dlg.DoModal() == IDOK)
- {
- for (int i=0; i < m_NonBlockedList.GetCount(); i++)
- {
- CString strText;
- m_NonBlockedList.GetText(i, strText);
- if (strText.CompareNoCase(dlg.m_strIPaddress) == 0)
- {
-
- return;
- }
- }
- int nIndex = m_NonBlockedList.AddString(dlg.m_strIPaddress);
- m_NonBlockedList.SetCurSel(nIndex);
- UpdateSecurityData(1);
- }
- }
- void CSecurityPage::OnEditNonblock()
- {
- int nIndex = m_NonBlockedList.GetCurSel();
- if (nIndex == -1)
- return;
- CAddIPDlg dlg;
- dlg.m_strTitle = "Edit IP address";
- m_NonBlockedList.GetText(nIndex, dlg.m_strIPaddress);
- if (dlg.DoModal() == IDOK)
- {
- for (int i=0; i < m_NonBlockedList.GetCount(); i++)
- {
- CString strText;
- m_NonBlockedList.GetText(i, strText);
- if (strText.CompareNoCase(dlg.m_strIPaddress) == 0)
- {
-
- return;
- }
- }
- m_NonBlockedList.DeleteString(nIndex);
- nIndex = m_NonBlockedList.AddString(dlg.m_strIPaddress);
- m_NonBlockedList.SetCurSel(nIndex);
- UpdateSecurityData(1);
- }
- }
- void CSecurityPage::OnRemoveNonblock()
- {
- int nIndex = m_NonBlockedList.GetCurSel();
- if (nIndex == -1)
- return;
- m_NonBlockedList.DeleteString(nIndex);
- m_NonBlockedList.SetCurSel(0);
- UpdateSecurityData(1);
- }
- void CSecurityPage::UpdateSecurityData(int nType)
- {
- CStringArray strArray;
- if (nType == 0)
- {
- for (int i=0; i < m_BlockedList.GetCount(); i++)
- {
- CString strText;
- m_BlockedList.GetText(i, strText);
- strArray.Add(strText);
- }
- theServer.m_SecurityManager.UpdateBlockedList(strArray);
- }
- else
- {
- for (int i=0; i < m_NonBlockedList.GetCount(); i++)
- {
- CString strText;
- m_NonBlockedList.GetText(i, strText);
- strArray.Add(strText);
- }
- theServer.m_SecurityManager.UpdateNonBlockedList(strArray);
- }
- }
- void CSecurityPage::AddIPToBlockList(LPCTSTR lpszIP)
- {
- for (int i=0; i < m_BlockedList.GetCount(); i++)
- {
- CString strText;
- m_BlockedList.GetText(i, strText);
- if (strText.CompareNoCase(lpszIP) == 0)
- {
-
- return;
- }
- }
- int nIndex = m_BlockedList.AddString(lpszIP);
- m_BlockedList.SetCurSel(nIndex);
-
- UpdateSecurityData(0);
- }
- void CSecurityPage::OnDblclkBlockedlist()
- {
- OnEditBlock();
- }
- void CSecurityPage::OnDblclkNonblockedlist()
- {
- OnEditNonblock();
- }
|