[Release] wrt_0.8.251
[platform/framework/web/wrt.git] / src / view / common / view_logic_security_origin_support.cpp
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /**
17  * @file    view_logic_security_origin_support.cpp
18  * @author  Jihoon Chung (jihoon.chung@samsung.com)
19  * @version 1.0
20  * @brief   Support security origin dao
21  */
22
23 #include "view_logic_security_origin_support.h"
24
25 #include <memory>
26 #include <Evas.h>
27 #include <Elementary.h>
28 #include <dpl/log/log.h>
29 #include <dpl/assert.h>
30 #include <dpl/wrt-dao-ro/common_dao_types.h>
31 #include <wrt-commons/security-origin-dao/security_origin_dao.h>
32 #include <widget_model.h>
33 #include <widget_string.h>
34
35 namespace ViewModule {
36
37 class SecurityOriginSupportImplementation
38 {
39   private:
40     WidgetModel* m_model;
41     SecurityOriginDB::SecurityOriginDAOPtr m_securityOriginDAO;
42
43   public:
44     SecurityOriginSupportImplementation(WidgetModel* widgetModel) :
45         m_model(NULL)
46     {
47         Assert(widgetModel);
48         m_model = widgetModel;
49     }
50
51     ~SecurityOriginSupportImplementation()
52     {}
53
54     SecurityOriginDB::SecurityOriginDAO* getSecurityOriginDAO(void)
55     {
56         Assert(m_model);
57         if (!m_securityOriginDAO) {
58             LogDebug("initialize securityOriginDAO");
59             m_securityOriginDAO =
60                 SecurityOriginDB::SecurityOriginDAOPtr(
61                     new SecurityOriginDB::SecurityOriginDAO(m_model->TzPkgId.
62                                                                 Get()));
63             // initialize security result data. Remove allow, deny for
64             m_securityOriginDAO->removeSecurityOriginData(
65                 SecurityOriginDB::RESULT_ALLOW_ONCE);
66             m_securityOriginDAO->removeSecurityOriginData(
67                 SecurityOriginDB::RESULT_DENY_ONCE);
68         }
69         return m_securityOriginDAO.get();
70     }
71 };
72
73 SecurityOriginSupport::SecurityOriginSupport(WidgetModel* widgetModel) :
74     m_impl(new SecurityOriginSupportImplementation(widgetModel))
75 {}
76
77 SecurityOriginSupport::~SecurityOriginSupport()
78 {}
79
80 SecurityOriginDB::SecurityOriginDAO* SecurityOriginSupport::
81     getSecurityOriginDAO(void)
82 {
83     return m_impl->getSecurityOriginDAO();
84 }
85
86 Evas_Object* SecurityOriginSupportUtil::createPopup(
87     Evas_Object* window,
88     const char* bodyText,
89     const char* checkText,
90     Evas_Smart_Cb
91     buttonCallback,
92     void* data)
93 {
94     LogDebug("createPopup");
95     Evas_Object* popup = elm_popup_add(window);
96
97     Evas_Object* label = elm_label_add(popup);
98     elm_object_style_set(label, "popup/default");
99     elm_label_line_wrap_set(label, ELM_WRAP_MIXED);
100     elm_object_text_set(label, bodyText);
101     evas_object_size_hint_weight_set(label, EVAS_HINT_EXPAND, 0.0);
102     evas_object_size_hint_align_set(label, EVAS_HINT_FILL, EVAS_HINT_FILL);
103     evas_object_show(label);
104
105     Evas_Object* layout = elm_layout_add(popup);
106     elm_layout_file_set(layout, WRT_EDJ_PATH, "popupWithCheck");
107     evas_object_size_hint_weight_set(layout, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
108
109     Evas_Object* check = elm_check_add(popup);
110     evas_object_size_hint_align_set(check, EVAS_HINT_FILL, EVAS_HINT_FILL);
111     evas_object_size_hint_weight_set(check, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
112     evas_object_show(check);
113
114     elm_object_part_text_set(layout, "elm.text", checkText);
115     elm_object_part_content_set(layout, "elm.swallow.label", label);
116     elm_object_part_content_set(layout, "elm.swallow.checkbox", check);
117
118     evas_object_show(layout);
119     elm_object_content_set(popup, layout);
120     Evas_Object* btn1 = elm_button_add(popup);
121     elm_object_text_set(btn1, WRT_SK_YES);
122     elm_object_part_content_set(popup, "button1", btn1);
123     evas_object_smart_callback_add(btn1, "clicked", buttonCallback, data);
124     Evas_Object* btn2 = elm_button_add(popup);
125     elm_object_text_set(btn2, WRT_SK_NO);
126     elm_object_part_content_set(popup, "button2", btn2);
127     evas_object_smart_callback_add(btn2, "clicked", buttonCallback, data);
128     return popup;
129 }
130
131 Evas_Object* SecurityOriginSupportUtil::getPopup(Evas_Object* button)
132 {
133     Assert(button);
134
135     Evas_Object* popup = button;
136     while (strcmp(elm_object_widget_type_get(popup), "elm_popup")) {
137         popup = elm_object_parent_widget_get(popup);
138         if (!popup) {
139             return NULL;
140         }
141     }
142     return popup;
143 }
144
145 Evas_Object* SecurityOriginSupportUtil::getCheck(Evas_Object* popup)
146 {
147     Assert(popup);
148     if (strcmp(elm_object_widget_type_get(popup), "elm_popup")) {
149         return NULL;
150     }
151     Evas_Object* check = elm_object_part_content_get(
152             elm_object_content_get(popup),
153             "elm.swallow.checkbox");
154     return check;
155 }
156
157 SecurityOriginDB::Result SecurityOriginSupportUtil::getResult(
158     Evas_Object* button)
159 {
160     using namespace SecurityOriginDB;
161
162     Assert(button);
163     // get popup evas_object
164     Evas_Object* popup = getPopup(button);
165     if (popup == NULL) {
166         return RESULT_UNKNOWN;
167     }
168     bool allow = !strcmp(WRT_SK_YES, elm_object_text_get(button));
169
170     // get check evas_object
171     Evas_Object* check = getCheck(popup);
172     if (check == NULL) {
173         return RESULT_UNKNOWN;
174     }
175     if (allow) {
176         return elm_check_state_get(check) ? RESULT_ALLOW_ALWAYS :
177                RESULT_ALLOW_ONCE;
178     } else {
179         return elm_check_state_get(check) ? RESULT_DENY_ALWAYS :
180                RESULT_DENY_ONCE;
181     }
182 }
183 } // namespace ViewModule