c2a87e416435e2ad64a562c2b92e9552beb5a68f
[apps/osp/Internet.git] / src / IntSharePopup.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 /*
19  * IntSharePopUp.cpp
20  *@file:        IntSharePopup.cpp
21  *@brief:       Share Popup for sharing bookmark via message, email etc
22  */
23
24 #include <FAppUiApp.h>
25 #include <FUi.h>
26 #include <FBase.h>
27 #include <FIo.h>
28
29 #include "IntCommonLib.h"
30 #include "IntSharePopup.h"
31
32 using namespace Tizen::App;
33 using namespace Tizen::Io;
34 using namespace Tizen::Base;
35 using namespace Tizen::Base::Collection;
36 using namespace Tizen::Base::Runtime;
37 using namespace Tizen::Graphics;
38 using namespace Tizen::Ui;
39 using namespace Tizen::Ui::Controls;
40 using namespace Tizen::Ui::Scenes;
41
42
43 const int SharePopup::IDA_CANCEL_BUTTON = 101;
44 const int SharePopup::ID_FORMAT_MESSAGE_STRING = 500;
45 const int SharePopup::ID_FORMAT_EMAIL_STRING = 501;
46 const int SharePopup::ID_FORMAT_FACEBOOK_STRING = 502;
47 const int SharePopup::ID_FORMAT_TWITTER_STRING = 503;
48
49 ShareInfo::     ShareInfo(void)
50 {
51         isImageAttached = false;
52 }
53
54 ShareInfo::     ~ShareInfo(void)
55 {
56 }
57
58 void
59 ShareInfo::SetPageTitle(Tizen::Base::String aPageTitle)
60 {
61         __pageTitle.Clear();
62         __pageTitle.Append(aPageTitle);
63 }
64
65 void
66 ShareInfo::SetPageUrl(Tizen::Base::String aPageURL)
67 {
68         __pageURL.Clear();
69         __pageURL.Append(aPageURL);
70 }
71
72 Tizen::Base::String
73 ShareInfo::GetPageTitle(void)
74 {
75         return __pageTitle;
76 }
77
78 Tizen::Base::String
79 ShareInfo::GetPageURL(void)
80 {
81         return __pageURL;
82 }
83
84 void
85 ShareInfo::SetImageAttached(bool imageAttached)
86 {
87         isImageAttached = imageAttached;
88 }
89
90 bool
91 ShareInfo::GetImageAttached()
92 {
93         return isImageAttached;
94 }
95
96 void
97 ShareInfo::SetImagePath(Tizen::Base::String aImagePath)
98 {
99         __imagePath.Clear();
100         __imagePath.Append(aImagePath);
101 }
102
103 Tizen::Base::String
104 ShareInfo::GetImagePath(void)
105 {
106         return __imagePath;
107 }
108
109 SharePopup::SharePopup(void)
110 :__pList(null),__pShareList(null)
111 {
112         __appControlOngoing = false;
113         __pTimer = null;
114 }
115
116 SharePopup::~SharePopup(void)
117 {
118         ShareInfo* pShareInfo = null;
119         result r = E_FAILURE;
120
121         if (__pShareList != null)
122         {
123                 pShareInfo = dynamic_cast<ShareInfo*>(__pShareList->GetAt(0));
124         }
125
126         String attachVal;
127         bool imageAttachment = false;
128         if (pShareInfo != null)
129         {
130                 imageAttachment = pShareInfo->GetImageAttached();
131                 if (imageAttachment)
132                 {
133                         attachVal = pShareInfo->GetImagePath();
134                         AppLog("SharePopup:: imagePath is %S",attachVal.GetPointer());
135                         r = File::Remove(attachVal);
136                         if(r == E_SUCCESS)
137                         {
138                                 AppLog("removed success");
139                         }
140                         else
141                         {
142                                 AppLog("removed failure");
143                         }
144                 }
145                 __pShareList->RemoveAll(true);
146         }
147
148         if(__pAppControlList)
149                 __pAppControlList->RemoveAll(true);
150         delete __pAppControlList;
151 }
152
153 bool
154 SharePopup::Initialize(void)
155 {
156         Button* pCancelButton = null;
157
158         Popup::Construct(L"IDL_SHARE_POPUP");
159         SetName(L"CommonPopup");
160
161         __pShareList = new(std::nothrow) ArrayList();
162         __pShareList->Construct();
163
164         __pList = static_cast<ListView*>(GetControl(L"IDC_LISTVIEW"));
165         if (__pList == null)
166         {
167                 return false;
168         }
169
170         __pList->SetItemProvider(*this);
171         __pList->AddListViewItemEventListener(*this);
172 //      __pList->SetTextOfEmptyList(L"No Sharing Options");//hardcoded string
173
174         pCancelButton = static_cast< Button* >(GetControl(L"IDC_BUTTON1", true));
175         if (pCancelButton)
176         {
177                 pCancelButton->AddActionEventListener(*this);
178                 pCancelButton->SetActionId(IDA_CANCEL_BUTTON);
179         }
180
181         __pTimer = new(std::nothrow) Timer();
182         __pTimer->Construct(*this);
183         SetPropagatedKeyEventListener(this);
184         return true;
185 }
186
187 result
188 SharePopup::OnTerminating(void)
189 {
190         result r = E_SUCCESS;
191         return r;
192 }
193
194 void
195 SharePopup::OnTimerExpired(Timer& timer)
196 {
197         Popup::SetShowState(false);
198         Popup::Show();
199         Frame* pCurrentFrame = null;
200         pCurrentFrame = Application::GetInstance()->GetAppFrame()->GetFrame();
201
202         if (pCurrentFrame != null)
203         {
204                 pCurrentFrame->SetEnabled(true);
205                 pCurrentFrame->Invalidate(true);
206         }
207 }
208
209 void
210 SharePopup::OnActionPerformed(const Tizen::Ui::Control& source, int actionId)
211 {
212         switch(actionId)
213         {
214         case IDA_CANCEL_BUTTON:
215         {
216                 Popup::SetShowState(false);
217                 Popup::Show();
218         }
219         break;
220         default:
221                 break;
222         }
223         return;
224 }
225
226 void
227 SharePopup::OnListViewContextItemStateChanged(Tizen::Ui::Controls::ListView& listView, int index, int elementId, Tizen::Ui::Controls::ListContextItemStatus state)
228 {
229         return;
230 }
231
232 void
233 SharePopup::OnListViewItemStateChanged(Tizen::Ui::Controls::ListView& listView, int index, int elementId, Tizen::Ui::Controls::ListItemStatus status)
234 {
235         switch (index)
236         {
237         case 0:
238         {
239                 if(__appControlOngoing == false)
240                 {
241                         __appControlOngoing = true;
242                         // share via message
243                         StartMessageAppControl();
244                         if(__pTimer == null)
245                         {
246                                 __pTimer = new(std::nothrow) Timer();
247                                 __pTimer->Construct(*this);
248                         }
249                         __pTimer->Start(2500);
250                 }
251         }
252         break;
253         case 1:
254         {
255                 if(__appControlOngoing == false)
256                 {
257                         __appControlOngoing = true;
258                         // share via email
259                         StartEmailAppControl();
260                         if(__pTimer == null)
261                         {
262                                 __pTimer = new(std::nothrow) Timer();
263                                 __pTimer->Construct(*this);
264                         }
265                         __pTimer->Start(2500);
266                 }
267
268         }
269         break;
270         default:
271                 if(__appControlOngoing == false)
272                 {
273                         __appControlOngoing = true;
274                         //share via third party app
275                         StartAppControl(index);
276                         if(__pTimer == null)
277                         {
278                                 __pTimer = new(std::nothrow) Timer();
279                                 __pTimer->Construct(*this);
280                         }
281                         __pTimer->Start(2500);
282                 }
283                 break;
284         }
285         Frame* pCurrentFrame = null;
286         pCurrentFrame = Application::GetInstance()->GetAppFrame()->GetFrame();
287
288         if (pCurrentFrame != null)
289         {
290                 pCurrentFrame->SetEnabled(false);
291                 pCurrentFrame->Invalidate(true);
292         }
293 }
294
295 void
296 SharePopup::OnListViewItemSwept(Tizen::Ui::Controls::ListView& listView, int index, Tizen::Ui::Controls::SweepDirection direction)
297 {
298         return;
299 }
300
301 void
302 SharePopup::OnListViewItemLongPressed(Tizen::Ui::Controls::ListView& listView, int index, int elementId, bool& invokeListViewItemCallback)
303 {
304         return;
305 }
306
307 Tizen::Ui::Controls::ListItemBase*
308 SharePopup::CreateItem(int index, int itemWidth)
309 {
310         AppLog("SharePopup::CreateItem index %d",index);
311         result r = E_FAILURE;
312         ListAnnexStyle style = LIST_ANNEX_STYLE_NORMAL;
313         int textSize = 35;
314         int elementHeight = 50;
315         int listItemHeight = 75;
316
317         CustomItem* pItem = new(std::nothrow) CustomItem();
318         r = pItem->Construct(Dimension(GetClientAreaBounds().width, listItemHeight), style);
319         if (IsFailed(r))
320         {
321                 AppLogDebug("Create Item Failed with error %s", GetErrorMessage(r));
322                 delete pItem;
323                 return null;
324         }
325
326
327
328         switch(index)
329         {
330         case 0:
331         {
332                 AppLogDebug("SharePopUp CreateItem 0");
333                 // IDS_SHARE_VIA_MESSAGE
334                 pItem->AddElement(Rectangle(45,0, GetClientAreaBounds().width, listItemHeight), ID_FORMAT_MESSAGE_STRING, CommonUtil::GetString(L"IDS_BR_OPT_MESSAGES"), true);
335         }
336         break;
337         case 1:
338         {
339                 AppLogDebug("SharePopUp CreateItem 1");
340                 // IDS_SHARE_VIA_EMAIL
341                 pItem->AddElement(Rectangle(45, 0, GetClientAreaBounds().width, listItemHeight), ID_FORMAT_EMAIL_STRING, CommonUtil::GetString(L"IDS_BR_OPT_SENDURLVIA_EMAIL"), true);
342         }
343         break;
344         default:
345                 if(__pAppControlList)
346                 {
347                         AppControl * pControl = dynamic_cast<AppControl*>(__pAppControlList->GetAt(index -2));
348                         AppLog("SharePopup::CreateItem appcontrol count %d",__pAppControlList->GetCount());
349                         if(pControl)
350                                 pItem->AddElement(Rectangle(45,0, GetClientAreaBounds().width, listItemHeight), ID_FORMAT_MESSAGE_STRING+index, pControl->GetAppName(), true);
351                 }
352                 break;
353         }
354         return pItem;
355 }
356
357 bool
358 SharePopup::DeleteItem(int index, Tizen::Ui::Controls::ListItemBase* pItem, int itemWidth)
359 {
360         return true;
361 }
362
363 int
364 SharePopup::GetItemCount(void)
365 {
366         String* pStrId = new String(L"http://tizen.org/appcontrol/operation/share_text");
367         __pAppControlList = AppManager::FindAppControlsN(pStrId,null,null,null);
368         if(__pAppControlList == null)
369         {
370                 return 2;
371         }
372         int count = __pAppControlList->GetCount();
373         AppLog("SharePopup::GetItemCount appcontrol count %d",count);
374         int removeCount = 0;
375         for(int pos = 0; pos < count; pos++)
376         {
377                 AppControl * pControl = dynamic_cast<AppControl*>(__pAppControlList->GetAt(pos));
378                 AppLog("pControl->GetAppName() %ls",pControl->GetAppName().GetPointer());
379                 if(pControl->GetAppName().Equals(L"Messages",false) == true || pControl->GetAppName().Equals(L"Email",false) == true )
380                 {
381                         __pAppControlList->RemoveAt(pos,true);
382                         pos--;
383                         count --;
384                         removeCount++;
385                 }
386         }
387
388         AppLog("removeCount %d",removeCount);
389         if(count+removeCount >=2)
390                 return count+removeCount;
391         return 2;
392
393 }
394
395 result
396 SharePopup::AddShareInfo(ShareInfo* pShareInfo)
397 {
398         result r = E_FAILURE;
399
400         if (__pShareList != NULL)
401         {
402                 r = __pShareList->Add(*pShareInfo);
403         }
404         return r;
405 }
406
407 void SharePopup::RemoveAllShareInfo()
408 {
409         __pShareList->RemoveAll();
410 }
411
412 void
413 SharePopup::StartAppControl(int index)
414 {
415    HashMap extraData;
416    ShareInfo* pShareInfo = null;
417    result r = E_FAILURE;
418    bool imageAttachment = false;
419
420    extraData.Construct();
421
422    if (__pShareList != null)
423         {
424                 pShareInfo = dynamic_cast<ShareInfo*>(__pShareList->GetAt(0));
425                 if (pShareInfo != null)
426                 {
427                         String testURL = pShareInfo->GetPageURL();
428                         AppLogDebug("getpageURL getpageURL is %ls", testURL.GetPointer());
429                 }
430         }
431
432    String textVal;
433
434         if (pShareInfo != null)
435         {
436                 textVal.Append(pShareInfo->GetPageTitle());
437                 textVal.Append(L" <");
438                 AppLog("share info url is %ls",pShareInfo->GetPageURL().GetPointer());
439                 textVal.Append(pShareInfo->GetPageURL().GetPointer());
440                 textVal.Append(L">");
441         }
442
443
444    String textKey = L"http://tizen.org/appcontrol/data/text";
445
446    //String attachKey = L"attachments";
447    String attachKey = L"http://tizen.org/appcontrol/data/path";
448    String attachVal;
449         if (pShareInfo != null)
450         {
451                 imageAttachment = pShareInfo->GetImageAttached();
452                 if (imageAttachment)
453                 {
454                         attachVal = pShareInfo->GetImagePath();
455                         AppLog("SharePopup::StartEmailAppControl imagePath is %S",attachVal.GetPointer());
456                 }
457                 else
458                 {
459                          attachVal = L"";
460                 }
461         }
462
463         ArrayList* pDataList = null;
464         pDataList = new (std::nothrow) ArrayList();
465         pDataList->Construct();
466         pDataList->Add(&attachVal);
467
468
469    extraData.Add(&textKey, &textVal);
470
471    if(attachVal.GetLength() > 0)
472    {
473            extraData.Add(&attachKey, pDataList);
474    }
475
476    AppControl * pControl = dynamic_cast<AppControl*>(__pAppControlList->GetAt(index - 2));
477    if (pControl)
478    {
479           r = pControl->Start(null, null, &extraData, this);
480 //         delete pControl;
481    }
482
483    delete pDataList;
484 }
485
486 void
487 SharePopup::StartEmailAppControl(void)
488 {
489    HashMap extraData;
490    ShareInfo* pShareInfo = null;
491    result r = E_FAILURE;
492    bool imageAttachment = false;
493
494    extraData.Construct();
495
496    if (__pShareList != null)
497         {
498                 pShareInfo = dynamic_cast<ShareInfo*>(__pShareList->GetAt(0));
499                 if (pShareInfo != null)
500                 {
501                         String testURL = pShareInfo->GetPageURL();
502                         AppLogDebug("getpageURL getpageURL is %ls", testURL.GetPointer());
503                 }
504         }
505
506    String textVal;
507
508         if (pShareInfo != null)
509         {
510                 textVal.Append(pShareInfo->GetPageTitle());
511                 textVal.Append(L" <");
512                 AppLog("share info url is %ls",pShareInfo->GetPageURL().GetPointer());
513                 textVal.Append(pShareInfo->GetPageURL().GetPointer());
514                 textVal.Append(L">");
515         }
516
517    String subjectKey = L"http://tizen.org/appcontrol/data/subject";
518    String subjectVal = L"";
519    String textKey = L"http://tizen.org/appcontrol/data/text";
520
521    String toKey = L"http://tizen.org/appcontrol/data/to";
522    String toVal = L"";
523    String ccKey = L"http://tizen.org/appcontrol/data/cc";
524    String ccVal = L"";
525    String bccKey = L"http://tizen.org/appcontrol/data/bcc";
526    String bccVal = L"";
527    String resultKey = L"http://tizen.org/appcontrol/data/return_result";
528    String resultVal = "true";
529
530
531    //String attachKey = L"attachments";
532    String attachKey = L"http://tizen.org/appcontrol/data/path";
533    String attachVal;
534         if (pShareInfo != null)
535         {
536                 imageAttachment = pShareInfo->GetImageAttached();
537                 if (imageAttachment)
538                 {
539                         attachVal = pShareInfo->GetImagePath();
540                         AppLog("SharePopup::StartEmailAppControl imagePath is %S",attachVal.GetPointer());
541                 }
542                 else
543                 {
544                          attachVal = L"";
545                 }
546         }
547
548         ArrayList* pDataList = null;
549         pDataList = new (std::nothrow) ArrayList();
550         pDataList->Construct();
551         pDataList->Add(&attachVal);
552
553    extraData.Add(&subjectKey, &subjectVal);
554    extraData.Add(&textKey, &textVal);
555    extraData.Add(&toKey, &toVal);
556    extraData.Add(&ccKey, &ccVal);
557    extraData.Add(&bccKey, &bccVal);
558    extraData.Add(&resultKey, &resultVal);
559    if(attachVal.GetLength() > 0)
560    {
561            extraData.Add(&attachKey, pDataList);
562    }
563
564    AppControl* pAc = AppManager::FindAppControlN(L"tizen.email", L"http://tizen.org/appcontrol/operation/compose");
565    if (pAc)
566    {
567           r = pAc->Start(null, null, &extraData, this);
568            delete pAc;
569    }
570
571    delete pDataList;
572 }
573
574 void
575 SharePopup::StartMessageAppControl(void)
576 {
577         HashMap extraData;
578         ShareInfo* pShareInfo = null;
579         result r = E_FAILURE;
580         bool imageAttachment = false;
581
582         extraData.Construct();
583
584         String typeKey = L"http://tizen.org/appcontrol/data/message/type";
585         String typeVal;
586         String textKey = L"http://tizen.org/appcontrol/data/text";
587         String textVal;
588         String attachKey = L"http://tizen.org/appcontrol/data/path";
589         String attachVal;
590         String resultKey = L"http://tizen.org/appcontrol/data/return_result";
591         String resultVal = "true";
592         ArrayList* pDataList = null;
593
594         if (__pShareList != null)
595         {
596                 pShareInfo = dynamic_cast<ShareInfo*>(__pShareList->GetAt(0));
597                 if (pShareInfo != null)
598                 {
599                         String testURL = pShareInfo->GetPageURL();
600                         AppLogDebug("getpageURL getpageURL is %ls", testURL.GetPointer());
601                 }
602         }
603
604         if (pShareInfo != null)
605         {
606                 textVal.Append(pShareInfo->GetPageTitle());
607                 if(pShareInfo->GetPageTitle().GetLength() > 0)
608                 {
609                         textVal.Append(L" <");
610                 }
611                 else
612                 {
613                         textVal.Append(L"<");
614                 }
615                 AppLog("share info url is %ls",pShareInfo->GetPageURL().GetPointer());
616                 textVal.Append(pShareInfo->GetPageURL().GetPointer());
617                 textVal.Append(L">");
618         }
619         if (pShareInfo != null)
620         {
621                 imageAttachment = pShareInfo->GetImageAttached();
622                 if (imageAttachment)
623                 {
624                         // type is mms
625                         typeVal = L"mms";
626                         attachVal = pShareInfo->GetImagePath();
627
628                         pDataList = new (std::nothrow) ArrayList();
629                         pDataList->Construct();
630                         pDataList->Add(&attachVal);
631                 }
632                 else
633                 {
634                         typeVal = L"sms";
635                         // type is sms
636                 }
637         }
638
639         extraData.Add(&typeKey, &typeVal);
640
641         if (imageAttachment)
642         {
643                 // type is MMMS, attach the image
644                 extraData.Add(&attachKey, pDataList);
645         }
646         else
647         {
648                 // type is SMS , attach the text
649                 extraData.Add(&textKey, &textVal);
650         }
651         extraData.Add(&resultKey, &resultVal);
652         AppControl* pAc = AppManager::FindAppControlN(L"tizen.messages", L"http://tizen.org/appcontrol/operation/compose");
653         if (pAc)
654         {
655                 r = pAc->Start(null, null, &extraData, this);
656                 delete pAc;
657         }
658
659         if(pDataList)
660         {
661                 delete pDataList;
662         }
663 }
664
665 void
666 SharePopup::OnAppControlCompleted(const Tizen::Base::String& providerId, const Tizen::Base::String& operationId, const Tizen::Base::Collection::IList* pResultList)
667 {
668         AppLog("InternetApp::OnForeground called");
669
670 }
671
672 void SharePopup::OnAppControlCompleteResponseReceived(const Tizen::App::AppId& appId, const Tizen::Base::String& operationId, Tizen::App::AppCtrlResult appControlResult, const Tizen::Base::Collection::IMap* pExtraData)
673 {
674         AppLog("SharePopup::OnAppControlCompleteResponseReceived");
675
676         ShareInfo* pShareInfo = null;
677         result r = E_FAILURE;
678         if(__pTimer)
679         {
680                 __pTimer->Cancel();
681                 delete __pTimer;
682                 __pTimer = null;
683         }
684         if (__pShareList != null)
685         {
686                 pShareInfo = dynamic_cast<ShareInfo*>(__pShareList->GetAt(0));
687         }
688
689         String attachVal;
690         bool imageAttachment = false;
691         if (pShareInfo != null)
692         {
693                 imageAttachment = pShareInfo->GetImageAttached();
694                 if (imageAttachment)
695                 {
696                         attachVal = pShareInfo->GetImagePath();
697                         AppLog("SharePopup:: imagePath is %S",attachVal.GetPointer());
698                         r = File::Remove(attachVal);
699                         if(r == E_SUCCESS)
700                         {
701                                 AppLog("removed success");
702                         }
703                         else
704                         {
705                                 AppLog("removed failure");
706                         }
707                 }
708                 __pShareList->RemoveAll(true);
709         }
710         Popup::SetShowState(false);
711         Popup::Show();
712         Frame* pCurrentFrame = null;
713         pCurrentFrame = Application::GetInstance()->GetAppFrame()->GetFrame();
714
715         if (pCurrentFrame != null)
716         {
717                 pCurrentFrame->SetEnabled(true);
718                 pCurrentFrame->Invalidate(true);
719         }
720         __appControlOngoing = false;
721 }
722
723 bool
724 SharePopup::OnKeyReleased (Control &source, const KeyEventInfo &keyEventInfo)
725 {
726         AppLog("ConfirmationPopup::OnKeyReleased %d",keyEventInfo.GetKeyCode());
727         if(keyEventInfo.GetKeyCode() == KEY_BACK || keyEventInfo.GetKeyCode() == KEY_ESC)
728         {
729                 if(GetShowState() == true)
730                 {
731                         if(__pTimer)
732                         {
733                                 __pTimer->Cancel();
734                                 delete __pTimer;
735                                 __pTimer = null;
736                         }
737                         SetShowState(false);
738                 }
739         }
740         return false;
741 }