0448bab6e4a59c68b397a9826a0d28ee2ab49d9a
[apps/osp/Internet.git] / src / IntEditHomePageForm.cpp
1 //
2
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Flora License, Version 1.1 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://floralicense.org/license/
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an AS IS BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 //!Internet EditHomePageForm class
19 /*@file:  EditHomePageForm.h
20  *@brief: Allow user to set any page as Home page.
21  *
22  */
23
24 #include <FAppUiApp.h>
25 #include <FUi.h>
26
27 #include "IntBookmarkData.h"
28 #include "IntCommonLib.h"
29 #include "IntEditHomePageForm.h"
30 #include "IntMultipleWindowPresentationModel.h"
31 #include "IntSceneRegister.h"
32 #include "IntSettingPresentationModel.h"
33
34
35 using namespace Tizen::App;
36 using namespace Tizen::Base;
37 using namespace Tizen::Base::Collection;
38 using namespace Tizen::Base::Utility;
39 using namespace Tizen::Graphics;
40 using namespace Tizen::Ui;
41 using namespace Tizen::Ui::Controls;
42 using namespace Tizen::Ui::Scenes;
43
44 const int EditHomePageForm::IDA_BUTTON_DONE = 101;
45 const int EditHomePageForm::IDA_BUTTON_CANCEL = 102;
46
47 EditHomePageForm::EditHomePageForm(void)
48 :__pUrlEditField(null)
49 , __pMsgBox(null)
50 , __modalMsgBoxResult(0)
51 {
52
53 }
54
55 EditHomePageForm::~EditHomePageForm(void)
56 {
57
58 }
59
60 bool
61 EditHomePageForm::Initialize(void)
62 {
63         Construct(L"IDL_EDIT_HOME_PAGE");
64         SetOrientation(ORIENTATION_AUTOMATIC);
65         return true;
66 }
67
68 result
69 EditHomePageForm::OnInitializing(void)
70 {
71         result r = E_SUCCESS;
72         SetFormBackEventListener(this);
73         SceneManager* pSceneManager = SceneManager::GetInstance();
74         AppAssert(pSceneManager);
75         pSceneManager->AddSceneEventListener(IDSCN_EDIT_HOMEPAGE_VIEW, *this);
76
77         GetHeader()->AddActionEventListener(*this);
78
79         __pUrlEditField = static_cast<EditField*>(GetControl(L"IDC_EDITFIELD"));
80         if (__pUrlEditField != null)
81         {
82                 __pUrlEditField->AddTextEventListener(*this);
83                 __pUrlEditField->SetOverlayKeypadCommandButtonVisible(false);
84         }
85         return r;
86 }
87
88 result
89 EditHomePageForm::OnTerminating(void)
90 {
91         result r = E_SUCCESS;
92         return r;
93 }
94
95 void
96 EditHomePageForm::OnSceneActivatedN(const SceneId& previousSceneId, const SceneId& currentSceneId, IList* pArgs)
97 {
98         if (__pUrlEditField != null)
99         {
100                 String favURL = SettingPresentationModel::GetInstance()->GetFavoriteUrl();
101                 AppLogDebug("EditHomePageForm::OnSceneActivatedN favURL %ls",favURL.GetPointer());
102                 __pUrlEditField->SetText(SettingPresentationModel::GetInstance()->GetFavoriteUrl());
103                 __pUrlEditField->SetFocus();
104                 __pUrlEditField->SetCursorPosition(__pUrlEditField->GetTextLength());
105                 __pUrlEditField->ShowKeypad();
106                 __pUrlEditField->Invalidate(true);
107         }
108
109         Invalidate(true);
110
111         return;
112 }
113
114 void
115 EditHomePageForm::OnSceneDeactivated(const SceneId& currentSceneId, const SceneId& nextSceneId)
116 {
117
118 }
119
120 void
121 EditHomePageForm::OnFormBackRequested(Form& source)
122 {
123         ArrayList* pArgList = null;
124         pArgList = new(std::nothrow) ArrayList();
125         pArgList->Construct();
126         pArgList->Add(*new(std::nothrow) String(CommonUtil::GetString(L"IDS_BR_SK_CANCEL")));
127         SceneManager::GetInstance()->GoBackward(BackwardSceneTransition(), pArgList);
128
129 }
130
131 void
132 EditHomePageForm::OnActionPerformed(const Control& source, int actionId)
133 {
134         ArrayList* pArgList = null;
135         pArgList = new(std::nothrow) ArrayList();
136         pArgList->Construct();
137         switch(actionId)
138         {
139         case IDA_BUTTON_DONE:
140         {
141                 pArgList->Add(*new(std::nothrow) String(CommonUtil::GetString(L"IDS_BR_SK_DONE")));
142                 String urlText = __pUrlEditField->GetText();
143                 urlText.Trim();
144                 AppLogDebug("set url text is %ls",urlText.GetPointer());
145
146                 bool ret = false;
147                 bool flag = false;
148                 String firstPattern(L"((https?|ftp|gopher|telnet|file|notes|ms-help):((//)|(\\\\))+[\w\d:#@%/;$()~_?\+-=\\\.&]*)");//[\w\d:#@%/;$()~_?\+-=\\\.&]*
149                 String secondPattern(L"^[A-Za-z0-9\.\+-:#@%/;$~?]+\\.[A-Za-z0-9 !\+-=:#@%/;$~()_?\\\.&]{2,}$");   // URL of type  abc.com (i.e without protocol in front of it)
150                 RegularExpression firstRegex;
151                 RegularExpression secondRegex;
152
153                 firstRegex.Construct(firstPattern, REGEX_CASELESS);
154                 secondRegex.Construct(secondPattern, REGEX_CASELESS);
155
156 //              Uri uri;
157 //              uri.SetUri(urlText);
158 //              urlText = uri.GetEncodedString();
159
160                 // Match
161                 ret = firstRegex.Match(urlText, false); // This returns true value
162                 flag = secondRegex.Match(urlText, false);  // Checks whether URL typed is of type  abc.com (i.e without protocol in front of it)
163
164
165                 if (ret == true)
166                 {
167                         //valid Url
168                         SettingPresentationModel::GetInstance()->SetHomepage(urlText);
169                         SettingPresentationModel::GetInstance()->SetFavoriteValue(urlText);
170                         result r = SceneManager::GetInstance()->GoBackward(BackwardSceneTransition(), pArgList);
171                         TryCatch(!IsFailed(r), "EditHomePageForm::OnActionPerformed Failed to GoBackward %s",GetErrorMessage(r));
172                 }
173                 else
174                 {
175                         if (flag == true)
176                         {
177                                 String validUrl;
178                                 validUrl = L"http://";
179                                 validUrl.Append(urlText);
180                                 // save Url
181                                 SettingPresentationModel::GetInstance()->SetHomepage(validUrl);
182                                 SettingPresentationModel::GetInstance()->SetFavoriteValue(validUrl);
183                                 result r = SceneManager::GetInstance()->GoBackward(BackwardSceneTransition(), pArgList);
184                                 TryCatch(!IsFailed(r), "EditHomePageForm::OnActionPerformed Failed to GoBackward %s",GetErrorMessage(r));
185                         }
186                         else
187                         {
188                                 // show pop up , not a valid URL
189                                 String msg = CommonUtil::GetString(L"IDS_COM_POP_INVALID_URL");
190                                 CreateMessage(msg);
191                         }
192                 }
193
194                 break;
195         }
196         case IDA_BUTTON_CANCEL:
197         {
198                 pArgList->Add(*new(std::nothrow) String(CommonUtil::GetString(L"IDS_BR_SK_CANCEL")));
199                 result r = SceneManager::GetInstance()->GoBackward(BackwardSceneTransition(), pArgList);
200                 TryCatch(!IsFailed(r), "EditHomePageForm::OnActionPerformed Failed to GoBackward %s",GetErrorMessage(r));
201                 break;
202         }
203         default:
204                 break;
205         }
206
207         CATCH:
208         pArgList->RemoveAll(true);
209         delete pArgList;
210         return;
211 }
212
213 void
214 EditHomePageForm::OnTextValueChanged(const Control& source)
215 {
216         String title ;
217         Header* pHeader = GetHeader();
218
219         if (pHeader == NULL)
220         {
221                 return;
222         }
223
224         if (__pUrlEditField == NULL)
225         {
226                 return;
227         }
228
229         title = __pUrlEditField->GetText();
230         title.Trim();
231
232         // To disable done button when folder title edit-field is empty
233         if (__pUrlEditField && title.IsEmpty() == true)
234         {
235                 pHeader->SetButtonEnabled(BUTTON_POSITION_RIGHT, false);
236         }
237         else
238         {
239                 pHeader->SetButtonEnabled(BUTTON_POSITION_RIGHT, true);
240         }
241         pHeader->Invalidate(true);
242         return;
243 }
244
245 void
246 EditHomePageForm::OnTextValueChangeCanceled(const Control& source)
247 {
248         return;
249 }
250
251 void
252 EditHomePageForm::OnOrientationChanged(const Control& source, OrientationStatus orientationStatus)
253 {
254         return;
255 }
256
257 void
258 EditHomePageForm::CreateMessage(String& message)
259 {
260
261         if (__pMsgBox != null)
262         {
263                 delete __pMsgBox;
264                 __pMsgBox = null;
265                 __modalMsgBoxResult = 0;
266         }
267
268         __pMsgBox = new(std::nothrow) MessageBox;
269         if (__pMsgBox != null)
270         {
271                 __pMsgBox->Construct(L"", message, MSGBOX_STYLE_OK, 3000);
272         }
273
274         if (__pMsgBox != null)
275         {
276                 __pMsgBox->ShowAndWait(__modalMsgBoxResult);
277                 if (__modalMsgBoxResult == MSGBOX_RESULT_OK)
278                 {
279                         if (__pMsgBox != null)
280                         {
281                                 delete __pMsgBox;
282                                 __pMsgBox = null;
283                         }
284                 }
285                 __modalMsgBoxResult = 0;
286         }
287
288         return;
289 }