Source code formating unification
[platform/framework/web/wrt.git] / src / api_new / runnable_widget_object.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    core_module.cpp
18  * @author  Przemyslaw Ciezkowski (p.ciezkowski@samsung.com)
19  * @version 1.0
20  * @brief   File contains defitinions of RunnableWidgetObject implementation.
21  */
22
23 #include <runnable_widget_object.h>
24 #include <privilege-control.h>
25 #include <dpl/wrt-dao-ro/global_config.h>
26 #include <dpl/utils/wrt_global_settings.h>
27 #include <appcore-common.h>
28 #include <profiling_util.h>
29 #include <signal.h>
30 #include "webkit/bundles/plugin_module_support.h"
31 #include <dpl/wrt-dao-ro/widget_dao_read_only.h>
32 #include <runnable_widget_object_state.h>
33 #include <wrt_ocsp_api.h>
34 #include <popup-runner/PopupInvoker.h>
35
36 namespace { //Anonymous
37 const std::string ACCESS_DENIED = _("IDS_BR_POP_ACCESS_DENIED");
38 const std::string ALREADY_RUNNING = _("IDS_BR_POP_ALREADY_RUNNING");
39 const std::string INVALID_LOCALE = _("IDS_IM_POP_INVALID_WIDGET_LOCALE");
40 const std::string STILL_AUTHORIZING = _("IDS_IM_POP_AUTHORIZING_ING_ATNT");
41 const unsigned int UID_ROOT = 0;
42 } // namespace anonymous
43
44 namespace WRT {
45 RunnableWidgetObject::RunnableWidgetObject(WidgetModelPtr &model,
46                                            Ewk_Context* context) :
47     m_widgetModel(model),
48     m_view(ViewModule::createView()),
49     m_ewkContext(context)
50 {
51     //set initial state of runnable object
52     m_guardstate = std::shared_ptr<State::RunnableWidgetObjectState>(
53             new State::InitialState(*this));
54     // If current uid is 'root', change privilege to apps
55     if (UID_ROOT == getuid()) {
56         // Set privilege by tizen id
57         // this code prevent that widget launch with "root" permission,
58         // when developers launch by command in the shell
59         set_privilege(DPL::ToUTF8String(m_widgetModel->TizenId).c_str());
60     }
61 }
62
63 bool RunnableWidgetObject::CheckBeforeLaunch()
64 {
65     State::StateChange change = m_guardstate->allowCheckBeforeLaunch();
66     Assert(m_widgetModel);
67
68 #ifdef WRT_SMACK_ENABLED
69     // TODO - this should be in the very first line of the process's main()
70     // for security reasons; but for now it is easier to place here because
71     // here the pkg name is already known; we don't struggle to move it
72     // near the start of main() because we don't know yet if this will
73     // stay in this process at all: it may be moved to AUL altogether
74     set_process_config(DPL::ToUTF8String(widgetModel->TizenId).c_str());
75 #endif
76
77     // Inform view controller about new widget model displaying
78     ADD_PROFILING_POINT("OCSPCheck", "start");
79
80     wrt_ocsp_widget_verification_status_t response;
81     if (m_widgetModel->Type.Get().appType == WrtDB::APP_TYPE_WAC20) {
82         wrt_ocsp_initialize();
83         wrt_ocsp_verify_widget(WrtDB::WidgetDAOReadOnly::getHandle(
84                                    m_widgetModel->TizenId), &response);
85         wrt_ocsp_shutdown();
86     } else {
87         response = WRT_OCSP_WIDGET_VERIFICATION_STATUS_GOOD;
88     }
89     ADD_PROFILING_POINT("OCSPCheck", "stop");
90
91     LogDebug("WRT OCSP response " << static_cast<int>(response));
92     if (response == WRT_OCSP_WIDGET_VERIFICATION_STATUS_GOOD) {
93         change.commit();
94         return true;
95     } else {
96         if (!GlobalSettings::PopupsTestModeEnabled()) {
97             Wrt::Popup::PopupInvoker().showInfo(
98                 _("IDS_IM_POP_WIDGET_REVOKED_TITLE"),
99                 _("IDS_IM_POP_WIDGET_REVOKED_ERROR"),
100                 _("IDS_IM_BUTTON_OK"));
101         }
102         return false;
103     }
104 }
105
106 bool RunnableWidgetObject::PrepareView(const std::string &startUrl,
107                                        Evas_Object *window)
108 {
109     State::StateChange change = m_guardstate->allowPrepareView();
110     Assert(window);
111
112     ADD_PROFILING_POINT("view_logic_init", "start");
113     if (!m_view->createWebView(m_ewkContext, window)) {
114         return false;
115     }
116     m_view->initialize();
117     m_view->prepareView(m_widgetModel.get(), startUrl);
118     ADD_PROFILING_POINT("view_logic_init", "stop");
119
120     change.commit();
121     return true;
122 }
123
124 void RunnableWidgetObject::Show()
125 {
126     State::StateChange change = m_guardstate->allowShow();
127
128     m_view->showWidget();
129
130     change.commit();
131 }
132
133 void RunnableWidgetObject::Hide()
134 {
135     State::StateChange change = m_guardstate->allowHide();
136
137     m_view->hideWidget();
138     m_view->destroyWebView();
139
140     change.commit();
141 }
142
143 void RunnableWidgetObject::Suspend()
144 {
145     LogDebug("Suspending widget");
146     State::StateChange change = m_guardstate->allowSuspend();
147     m_view->suspendWidget();
148
149     change.commit();
150 }
151
152 void RunnableWidgetObject::Resume()
153 {
154     LogDebug("Resuming widget");
155     State::StateChange change = m_guardstate->allowResume();
156     m_view->resumeWidget();
157
158     change.commit();
159 }
160
161 void RunnableWidgetObject::Reset()
162 {
163     LogDebug("Reseting widget");
164     State::StateChange change = m_guardstate->allowReset();
165     m_view->resetWidget();
166
167     change.commit();
168 }
169
170 void RunnableWidgetObject::ReloadStartPage()
171 {
172     m_view->reloadStartPage();
173 }
174
175 Evas_Object* RunnableWidgetObject::GetCurrentWebview()
176 {
177     State::StateChange change = m_guardstate->allowGetCurrentWebview();
178
179     Evas_Object* cww = m_view->getCurrentWebview();
180
181     change.commit();
182     return cww;
183 }
184
185 void RunnableWidgetObject::SetUserDelegates(const UserDelegatesPtr& cbs)
186 {
187     State::StateChange change = m_guardstate->allowSetUserDelegates();
188     m_view->setUserCallbacks(cbs);
189     change.commit();
190 }
191
192 void RunnableWidgetObject::Backward()
193 {
194     State::StateChange change = m_guardstate->allowBackward();
195     m_view->backward();
196
197     change.commit();
198 }
199
200 void RunnableWidgetObject::FireJavascriptEvent(int event, void* data)
201 {
202     State::StateChange change = m_guardstate->allowFireJavascriptEvent();
203     m_view->fireJavascriptEvent(event, data);
204
205     change.commit();
206 }
207
208 void RunnableWidgetObject::setNewState(
209     std::shared_ptr<State::RunnableWidgetObjectState> sptr)
210 {
211     LogInfo("RunnableWidgetObject changes state to: " << sptr->toString());
212     m_guardstate = sptr;
213 }
214
215 RunnableWidgetObject::~RunnableWidgetObject()
216 {
217     LogDebug("");
218     PluginModuleSupport::shutdown(m_ewkContext);
219 }
220 } /* namespace WRT */