553028f50251fda5ccd7ab98f42e7f2d792beccf
[platform/framework/web/wrt-commons.git] / modules / widget_dao / dao / widget_dao.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  * This file contains the definition of widget dao class.
18  *
19  * @file    widget_dao.cpp
20  * @author  Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
21  * @author  Bartosz Janiak (b.janiak@samsung.com)
22  * @author  Yang Jie (jie2.yang@samsung.com)
23  * @author  Koeun Choi(koeun.choi@samsung.com)
24  * @author  Pawel Sikorski(p.sikorski@samsung.com)
25  * @version 1.0
26  * @brief   This file contains the definition of Configuration.
27  */
28 #include <stddef.h>
29 #include <dpl/wrt-dao-rw/widget_dao.h>
30
31 #include <sstream>
32 #include <dpl/log/log.h>
33 #include <dpl/foreach.h>
34 #include <dpl/wrt-dao-ro/webruntime_database.h>
35 #include <dpl/wrt-dao-rw/property_dao.h>
36 #include <orm_generator_wrt.h>
37 #include <dpl/wrt-dao-ro/WrtDatabase.h>
38
39 namespace WrtDB {
40 //TODO in current solution in each getter there exists a check
41 //"IsWidgetInstalled". Maybe it should be verified, if it could be done
42 //differently  (check in WidgetDAO constructor)
43
44 #define SQL_CONNECTION_EXCEPTION_HANDLER_BEGIN          Try
45
46 #define SQL_CONNECTION_EXCEPTION_HANDLER_END(message)   \
47     Catch(DPL::DB::SqlConnection::Exception::Base) {       \
48         LogError(message);                              \
49         ReThrowMsg(WidgetDAO::Exception::DatabaseError, \
50                    message);                            \
51     }
52
53 WidgetDAO::WidgetDAO(DPL::OptionalString widgetGUID) :
54     WidgetDAOReadOnly(WidgetDAOReadOnly::getHandle(widgetGUID))
55 {}
56
57 WidgetDAO::WidgetDAO(DPL::String tzAppId) :
58     WidgetDAOReadOnly(WidgetDAOReadOnly::getHandle(tzAppId))
59 {}
60
61 WidgetDAO::WidgetDAO(DbWidgetHandle handle) :
62     WidgetDAOReadOnly(handle)
63 {}
64
65 WidgetDAO::~WidgetDAO()
66 {}
67
68 void WidgetDAO::setTizenAppId(const DPL::OptionalString& tzAppId)
69 {
70     SQL_CONNECTION_EXCEPTION_HANDLER_BEGIN
71     {
72         using namespace DPL::DB::ORM;
73         wrt::ScopedTransaction transaction(&WrtDatabase::interface());
74
75         if (!isWidgetInstalled(getHandle())) {
76             ThrowMsg(WidgetDAOReadOnly::Exception::WidgetNotExist,
77                      "Cannot find widget. Handle: " << getHandle());
78         }
79
80         wrt::WidgetInfo::Row row;
81         row.Set_tizen_appid(*tzAppId);
82
83         WRT_DB_UPDATE(update, wrt::WidgetInfo, &WrtDatabase::interface())
84         update->Where(
85             Equals<wrt::WidgetInfo::app_id>(getHandle()));
86
87         update->Values(row);
88         update->Execute();
89         transaction.Commit();
90     }
91     SQL_CONNECTION_EXCEPTION_HANDLER_END("Failed to register widget")
92 }
93
94 void WidgetDAO::setSecurityPopupUsage(const SettingsType value)
95 {
96     SQL_CONNECTION_EXCEPTION_HANDLER_BEGIN
97     {
98         using namespace DPL::DB::ORM;
99         using namespace DPL::DB::ORM::wrt;
100
101         ScopedTransaction transaction(&WrtDatabase::interface());
102         if (!isWidgetInstalled(getHandle())) {
103             ThrowMsg(WidgetDAOReadOnly::Exception::WidgetNotExist,
104                      "Cannot find widget. Handle: " << getHandle());
105         }
106
107         WidgetSecuritySettings::Row row;
108         row.Set_security_popup_usage(value);
109
110         WRT_DB_UPDATE(update, WidgetSecuritySettings, &WrtDatabase::interface())
111         update->Where(Equals<WidgetSecuritySettings::app_id>(getHandle()));
112         update->Values(row);
113         update->Execute();
114
115         transaction.Commit();
116     }
117     SQL_CONNECTION_EXCEPTION_HANDLER_END("Failed to set security popup usage")
118 }
119
120 void WidgetDAO::setGeolocationUsage(const SettingsType value)
121 {
122     SQL_CONNECTION_EXCEPTION_HANDLER_BEGIN
123     {
124         using namespace DPL::DB::ORM;
125         using namespace DPL::DB::ORM::wrt;
126
127         ScopedTransaction transaction(&WrtDatabase::interface());
128         if (!isWidgetInstalled(getHandle())) {
129             ThrowMsg(WidgetDAOReadOnly::Exception::WidgetNotExist,
130                      "Cannot find widget. Handle: " << getHandle());
131         }
132
133         WidgetSecuritySettings::Row row;
134         row.Set_geolocation_usage(value);
135
136         WRT_DB_UPDATE(update, WidgetSecuritySettings, &WrtDatabase::interface())
137         update->Where(Equals<WidgetSecuritySettings::app_id>(getHandle()));
138         update->Values(row);
139         update->Execute();
140
141         transaction.Commit();
142     }
143     SQL_CONNECTION_EXCEPTION_HANDLER_END("Failed to set geolocation usage")
144 }
145
146 void WidgetDAO::setWebNotificationUsage(const SettingsType value)
147 {
148     SQL_CONNECTION_EXCEPTION_HANDLER_BEGIN
149     {
150         using namespace DPL::DB::ORM;
151         using namespace DPL::DB::ORM::wrt;
152
153         ScopedTransaction transaction(&WrtDatabase::interface());
154         if (!isWidgetInstalled(getHandle())) {
155             ThrowMsg(WidgetDAOReadOnly::Exception::WidgetNotExist,
156                      "Cannot find widget. Handle: " << getHandle());
157         }
158
159         WidgetSecuritySettings::Row row;
160         row.Set_web_notification_usage(value);
161
162         WRT_DB_UPDATE(update, WidgetSecuritySettings, &WrtDatabase::interface())
163         update->Where(Equals<WidgetSecuritySettings::app_id>(getHandle()));
164         update->Values(row);
165         update->Execute();
166
167         transaction.Commit();
168     }
169     SQL_CONNECTION_EXCEPTION_HANDLER_END("Failed to set web notification usage")
170 }
171
172 void WidgetDAO::setWebDatabaseUsage(const SettingsType value)
173 {
174     SQL_CONNECTION_EXCEPTION_HANDLER_BEGIN
175     {
176         using namespace DPL::DB::ORM;
177         using namespace DPL::DB::ORM::wrt;
178
179         ScopedTransaction transaction(&WrtDatabase::interface());
180         if (!isWidgetInstalled(getHandle())) {
181             ThrowMsg(WidgetDAOReadOnly::Exception::WidgetNotExist,
182                      "Cannot find widget. Handle: " << getHandle());
183         }
184
185         WidgetSecuritySettings::Row row;
186         row.Set_web_database_usage(value);
187
188         WRT_DB_UPDATE(update, WidgetSecuritySettings, &WrtDatabase::interface())
189         update->Where(Equals<WidgetSecuritySettings::app_id>(getHandle()));
190         update->Values(row);
191         update->Execute();
192
193         transaction.Commit();
194     }
195     SQL_CONNECTION_EXCEPTION_HANDLER_END("Failed to set web database usage")
196 }
197
198 void WidgetDAO::setFileSystemUsage(const SettingsType value)
199 {
200     SQL_CONNECTION_EXCEPTION_HANDLER_BEGIN
201     {
202         using namespace DPL::DB::ORM;
203         using namespace DPL::DB::ORM::wrt;
204
205         ScopedTransaction transaction(&WrtDatabase::interface());
206         if (!isWidgetInstalled(getHandle())) {
207             ThrowMsg(WidgetDAOReadOnly::Exception::WidgetNotExist,
208                      "Cannot find widget. Handle: " << getHandle());
209         }
210
211         WidgetSecuritySettings::Row row;
212         row.Set_file_system_usage(value);
213
214         WRT_DB_UPDATE(update, WidgetSecuritySettings, &WrtDatabase::interface())
215         update->Where(Equals<WidgetSecuritySettings::app_id>(getHandle()));
216         update->Values(row);
217         update->Execute();
218
219         transaction.Commit();
220     }
221     SQL_CONNECTION_EXCEPTION_HANDLER_END("Failed to set filesystem usage")
222 }
223
224 void WidgetDAO::registerWidget(
225     const TizenAppId & tzAppId,
226     const WidgetRegisterInfo &widgetRegInfo,
227     const IWacSecurity &wacSecurity)
228 {
229     LogDebug("Registering widget");
230     SQL_CONNECTION_EXCEPTION_HANDLER_BEGIN
231     {
232         DPL::DB::ORM::wrt::ScopedTransaction transaction(
233             &WrtDatabase::interface());
234         registerWidgetInternal(tzAppId, widgetRegInfo, wacSecurity);
235         transaction.Commit();
236     }
237     SQL_CONNECTION_EXCEPTION_HANDLER_END("Failed to register widget")
238 }
239
240 DbWidgetHandle WidgetDAO::registerWidget(
241     const WidgetRegisterInfo &pWidgetRegisterInfo,
242     const IWacSecurity &wacSecurity)
243 {
244     //make it more precise due to very fast tests
245     struct timeval tv;
246     gettimeofday(&tv, NULL);
247     DbWidgetHandle widgetHandle;
248     unsigned int seed = time(NULL);
249     do {
250         widgetHandle = rand_r(&seed);
251     } while (isWidgetInstalled(widgetHandle));
252
253     registerWidget(*pWidgetRegisterInfo.configInfo.tizenAppId,
254                    pWidgetRegisterInfo,
255                    wacSecurity);
256     return widgetHandle;
257 }
258
259 TizenAppId WidgetDAO::registerWidgetGeneratePkgId(
260     const WidgetRegisterInfo &pWidgetRegisterInfo,
261     const IWacSecurity &wacSecurity)
262 {
263     TizenAppId tzAppId = generatePkgId();
264     registerWidget(tzAppId, pWidgetRegisterInfo, wacSecurity);
265     return tzAppId;
266 }
267
268 void WidgetDAO::registerWidgetInternal(
269     const TizenAppId & tzAppId,
270     const WidgetRegisterInfo &widgetRegInfo,
271     const IWacSecurity &wacSecurity,
272     const DPL::Optional<DbWidgetHandle> handle)
273 {
274     //Register into WidgetInfo has to be first
275     //as all other tables depend upon that
276     DbWidgetHandle widgetHandle = registerWidgetInfo(tzAppId,
277                                                      widgetRegInfo,
278                                                      wacSecurity,
279                                                      handle);
280
281     registerWidgetExtendedInfo(widgetHandle, widgetRegInfo);
282
283     registerWidgetLocalizedInfo(widgetHandle, widgetRegInfo);
284
285     registerWidgetIcons(widgetHandle, widgetRegInfo);
286
287     registerWidgetStartFile(widgetHandle, widgetRegInfo);
288
289     PropertyDAO::RegisterProperties(tzAppId, widgetRegInfo);
290
291     registerWidgetFeatures(widgetHandle, widgetRegInfo);
292
293     registerWidgetPrivilege(widgetHandle, widgetRegInfo);
294
295     registerWidgetWindowModes(widgetHandle, widgetRegInfo);
296
297     registerWidgetWarpInfo(widgetHandle, widgetRegInfo);
298
299     registerWidgetCertificates(widgetHandle, wacSecurity);
300
301     CertificateChainList list;
302     wacSecurity.getCertificateChainList(list, SIGNATURE_DISTRIBUTOR);
303     registerCertificatesChains(widgetHandle, SIGNATURE_DISTRIBUTOR, list);
304
305     list.clear();
306     wacSecurity.getCertificateChainList(list, SIGNATURE_AUTHOR);
307     registerCertificatesChains(widgetHandle, SIGNATURE_AUTHOR, list);
308
309     registerWidgetSettings(widgetHandle, widgetRegInfo);
310
311     registerAppControl(widgetHandle, widgetRegInfo);
312
313     registerEncryptedResouceInfo(widgetHandle, widgetRegInfo);
314
315     registerExternalLocations(widgetHandle, widgetRegInfo.externalLocations);
316
317     registerWidgetSecuritySettings(widgetHandle);
318 }
319
320 void WidgetDAO::registerOrUpdateWidget(
321     const TizenAppId & widgetName,
322     const WidgetRegisterInfo &widgetRegInfo,
323     const IWacSecurity &wacSecurity)
324 {
325     LogDebug("Reregistering widget");
326     SQL_CONNECTION_EXCEPTION_HANDLER_BEGIN
327     {
328         DPL::DB::ORM::wrt::ScopedTransaction transaction(
329             &WrtDatabase::interface());
330
331         unregisterWidgetInternal(widgetName);
332         registerWidgetInternal(widgetName, widgetRegInfo, wacSecurity);
333         transaction.Commit();
334     }
335     SQL_CONNECTION_EXCEPTION_HANDLER_END("Failed to reregister widget")
336 }
337
338 #define DO_INSERT(row, table)                              \
339     {                                                      \
340         WRT_DB_INSERT(insert, table, &WrtDatabase::interface()) \
341         insert->Values(row);                               \
342         insert->Execute();                                 \
343     }
344
345 void WidgetDAO::registerWidgetExtendedInfo(DbWidgetHandle widgetHandle,
346                                            const WidgetRegisterInfo &regInfo)
347 {
348     //Try and transaction not needed
349     using namespace DPL::DB::ORM;
350     using namespace DPL::DB::ORM::wrt;
351
352     WidgetExtendedInfo::Row row;
353     row.Set_app_id(widgetHandle);
354     //    row.Set_share_href    (DPL::FromUTF8String(regInfo.shareHref));
355     row.Set_signature_type(regInfo.signatureType);
356     row.Set_test_widget(regInfo.isTestWidget);
357     row.Set_install_time(regInfo.installedTime);
358     row.Set_splash_img_src(regInfo.configInfo.splashImgSrc);
359     row.Set_background_page(regInfo.configInfo.backgroundPage);
360     row.Set_installed_path(regInfo.widgetInstalledPath);
361
362     DO_INSERT(row, WidgetExtendedInfo)
363 }
364
365 DbWidgetHandle WidgetDAO::registerWidgetInfo(
366     const TizenAppId & tzAppId,
367     const WidgetRegisterInfo &regInfo,
368     const IWacSecurity &wacSecurity,
369     const DPL::Optional<DbWidgetHandle> handle)
370 {
371     using namespace DPL::DB::ORM;
372     using namespace DPL::DB::ORM::wrt;
373     const ConfigParserData& widgetConfigurationInfo = regInfo.configInfo;
374
375     // TODO in wrt_db all Columns in WidgetInfo have DEFAULT VALUE set.
376     // Because of that, "Optional" is not used there
377
378     WidgetInfo::Row row;
379     if (!!handle) {
380         row.Set_app_id(*handle);
381     }
382
383     row.Set_widget_type(regInfo.webAppType.appType);
384
385     row.Set_widget_id(widgetConfigurationInfo.widget_id);
386     row.Set_defaultlocale(widgetConfigurationInfo.defaultlocale);
387     row.Set_widget_version(widgetConfigurationInfo.version);
388     row.Set_widget_width(widgetConfigurationInfo.width);
389     row.Set_widget_height(widgetConfigurationInfo.height);
390     row.Set_author_name(widgetConfigurationInfo.authorName);
391     row.Set_author_email(widgetConfigurationInfo.authorEmail);
392     row.Set_author_href(widgetConfigurationInfo.authorHref);
393     row.Set_csp_policy(widgetConfigurationInfo.cspPolicy);
394     row.Set_csp_policy_report_only(widgetConfigurationInfo.cspPolicyReportOnly);
395     row.Set_base_folder(DPL::FromUTF8String(regInfo.baseFolder));
396     row.Set_webkit_plugins_required(widgetConfigurationInfo.flashNeeded);
397     row.Set_recognized(wacSecurity.isRecognized());
398     row.Set_wac_signed(wacSecurity.isWacSigned());
399     row.Set_distributor_signed(wacSecurity.isDistributorSigned());
400     row.Set_tizen_appid(tzAppId);
401     row.Set_tizen_pkgid(regInfo.tzPkgid);
402     {
403         std::stringstream tmp;
404         tmp << regInfo.minVersion;
405         row.Set_min_version(DPL::FromUTF8String(tmp.str()));
406     }
407     row.Set_back_supported(widgetConfigurationInfo.backSupported);
408     row.Set_access_network(widgetConfigurationInfo.accessNetwork);
409     row.Set_pkg_type(regInfo.packagingType.pkgType);
410
411     Try
412     {
413         DO_INSERT(row, WidgetInfo);
414     }
415     Catch(DPL::DB::SqlConnection::Exception::Base)
416     {
417         ReThrowMsg(WidgetDAO::Exception::DatabaseError,
418                    "Failed to register widget info.");
419     }
420
421     if (!handle) {
422         //get autoincremented value of widgetHandle
423         WRT_DB_SELECT(select, WidgetInfo, &WrtDatabase::interface())
424         select->Where(Equals<WidgetInfo::tizen_appid>(tzAppId));
425         return select->GetSingleValue<WidgetInfo::app_id>();
426     } else {
427         return *handle;
428     }
429 }
430
431 void WidgetDAO::registerWidgetLocalizedInfo(DbWidgetHandle widgetHandle,
432                                             const WidgetRegisterInfo &regInfo)
433 {
434     using namespace DPL::DB::ORM;
435     using namespace DPL::DB::ORM::wrt;
436
437     const ConfigParserData& widgetConfigurationInfo = regInfo.configInfo;
438
439     FOREACH(it, widgetConfigurationInfo.localizedDataSet)
440     {
441         const DPL::String& locale = it->first;
442         const ConfigParserData::LocalizedData& data = it->second;
443
444         LocalizedWidgetInfo::Row row;
445         row.Set_app_id(widgetHandle);
446         row.Set_widget_locale(locale);
447         row.Set_widget_name(data.name);
448         row.Set_widget_shortname(data.shortName);
449         row.Set_widget_description(data.description);
450         row.Set_widget_license(data.license);
451         row.Set_widget_license_file(data.licenseFile);
452         row.Set_widget_license_href(data.licenseHref);
453
454         DO_INSERT(row, LocalizedWidgetInfo)
455     }
456 }
457
458 void WidgetDAO::registerWidgetIcons(DbWidgetHandle widgetHandle,
459                                     const WidgetRegisterInfo &regInfo)
460 {
461     using namespace DPL::DB::ORM;
462     using namespace DPL::DB::ORM::wrt;
463
464     FOREACH(i, regInfo.localizationData.icons)
465     {
466         wrt::WidgetIcon::icon_id::ColumnType icon_id;
467         {
468             wrt::WidgetIcon::Row row;
469             row.Set_app_id(widgetHandle);
470             row.Set_icon_src(i->src);
471             row.Set_icon_width(i->width);
472             row.Set_icon_height(i->height);
473
474             WRT_DB_INSERT(insert, wrt::WidgetIcon, &WrtDatabase::interface())
475             insert->Values(row);
476             icon_id = static_cast<int>(insert->Execute());
477         }
478
479         FOREACH(j, i->availableLocales)
480         {
481             WidgetLocalizedIcon::Row row;
482             row.Set_app_id(widgetHandle);
483             row.Set_icon_id(icon_id);
484             row.Set_widget_locale(*j);
485             DO_INSERT(row, WidgetLocalizedIcon)
486         }
487     }
488 }
489
490 void WidgetDAO::registerWidgetStartFile(DbWidgetHandle widgetHandle,
491                                         const WidgetRegisterInfo &regInfo)
492 {
493     using namespace DPL::DB::ORM;
494     using namespace DPL::DB::ORM::wrt;
495
496     FOREACH(i, regInfo.localizationData.startFiles)
497     {
498         WidgetStartFile::start_file_id::ColumnType startFileID;
499         {
500             WidgetStartFile::Row row;
501             row.Set_app_id(widgetHandle);
502             row.Set_src(i->path);
503
504             WRT_DB_INSERT(insert, WidgetStartFile, &WrtDatabase::interface())
505             insert->Values(row);
506             startFileID = static_cast<int>(insert->Execute());
507         }
508
509         FOREACH(j, i->propertiesForLocales)
510         {
511             WidgetLocalizedStartFile::Row row;
512             row.Set_app_id(widgetHandle);
513             row.Set_start_file_id(startFileID);
514             row.Set_widget_locale(j->first);
515             row.Set_type(j->second.type);
516             row.Set_encoding(j->second.encoding);
517
518             DO_INSERT(row, WidgetLocalizedStartFile)
519         }
520     }
521 }
522
523 void WidgetDAO::registerWidgetFeatures(DbWidgetHandle widgetHandle,
524                                        const WidgetRegisterInfo &regInfo)
525 {
526     using namespace DPL::DB::ORM;
527     const ConfigParserData& widgetConfigurationInfo = regInfo.configInfo;
528
529     FOREACH(pWidgetFeature, widgetConfigurationInfo.featuresList)
530     {
531         wrt::WidgetFeature::Row widgetFeature;
532         widgetFeature.Set_app_id(widgetHandle);
533         widgetFeature.Set_name(pWidgetFeature->name);
534         widgetFeature.Set_rejected(false);
535
536         DO_INSERT(widgetFeature, wrt::WidgetFeature)
537     }
538 }
539
540 void WidgetDAO::registerWidgetPrivilege(DbWidgetHandle widgetHandle,
541                                         const WidgetRegisterInfo &regInfo)
542 {
543     using namespace DPL::DB::ORM;
544     const ConfigParserData& widgetConfigurationInfo = regInfo.configInfo;
545
546     FOREACH(it, widgetConfigurationInfo.privilegeList)
547     {
548         wrt::WidgetPrivilege::Row widgetPrivilege;
549         widgetPrivilege.Set_app_id(widgetHandle);
550         widgetPrivilege.Set_name(it->name);
551
552         DO_INSERT(widgetPrivilege, wrt::WidgetPrivilege)
553     }
554 }
555
556 void WidgetDAO::updateFeatureRejectStatus(const DbWidgetFeature &widgetFeature)
557 {
558     // This function could be merged with registerWidgetFeature but it requires
559     // desing change:
560     // 1. Check "ace step" in installer must be done before "update database
561     // step"
562     // And:
563     // ConfigurationParserData shouldn't be called "ParserData" any more.
564     using namespace DPL::DB::ORM;
565
566     wrt::ScopedTransaction transaction(&WrtDatabase::interface());
567     WRT_DB_SELECT(select, wrt::WidgetFeature, &WrtDatabase::interface())
568     select->Where(And(Equals<wrt::WidgetFeature::app_id>(m_widgetHandle),
569                       Equals<wrt::WidgetFeature::name>(widgetFeature.name)));
570
571     auto row = select->GetSingleRow();
572     row.Set_rejected(widgetFeature.rejected);
573
574     WRT_DB_UPDATE(update, wrt::WidgetFeature, &WrtDatabase::interface())
575     update->Where(And(Equals<wrt::WidgetFeature::app_id>(m_widgetHandle),
576                       Equals<wrt::WidgetFeature::name>(widgetFeature.name)));
577     update->Values(row);
578     update->Execute();
579     transaction.Commit();
580 }
581
582 void WidgetDAO::registerWidgetWindowModes(DbWidgetHandle widgetHandle,
583                                           const WidgetRegisterInfo &regInfo)
584 {
585     using namespace DPL::DB::ORM;
586     using namespace DPL::DB::ORM::wrt;
587     const ConfigParserData& widgetConfigurationInfo = regInfo.configInfo;
588
589     FOREACH(i, widgetConfigurationInfo.windowModes)
590     {
591         wrt::WidgetWindowModes::Row windowMode;
592         windowMode.Set_app_id(widgetHandle);
593         windowMode.Set_window_mode(*i);
594
595         DO_INSERT(windowMode, wrt::WidgetWindowModes)
596     }
597 }
598
599 void WidgetDAO::registerWidgetWarpInfo(DbWidgetHandle widgetHandle,
600                                        const WidgetRegisterInfo &regInfo)
601 {
602     using namespace DPL::DB::ORM;
603     using namespace DPL::DB::ORM::wrt;
604     const ConfigParserData& widgetConfigurationInfo = regInfo.configInfo;
605
606     FOREACH(AccIt, widgetConfigurationInfo.accessInfoSet)
607     {
608         WidgetWARPInfo::Row row;
609         row.Set_app_id(widgetHandle);
610         row.Set_iri(AccIt->m_strIRI);
611         row.Set_subdomain_access(static_cast <int>(
612                                      AccIt->m_bSubDomainAccess));
613
614         DO_INSERT(row, WidgetWARPInfo)
615     }
616 }
617
618 void WidgetDAO::registerWidgetCertificates(DbWidgetHandle widgetHandle,
619                                            const IWacSecurity &wacSecurity)
620 {
621     using namespace DPL::DB::ORM;
622     using namespace DPL::DB::ORM::wrt;
623
624     FOREACH(it, wacSecurity.getCertificateList())
625     {
626         WidgetCertificateFingerprint::Row row;
627         row.Set_app_id(widgetHandle);
628         row.Set_owner(it->owner);
629         row.Set_chainid(it->chainId);
630         row.Set_type(it->type);
631         row.Set_md5_fingerprint(DPL::FromUTF8String(it->strMD5Fingerprint));
632         row.Set_sha1_fingerprint(DPL::FromUTF8String(it->strSHA1Fingerprint));
633         row.Set_common_name(it->strCommonName);
634
635         DO_INSERT(row, WidgetCertificateFingerprint)
636     }
637 }
638
639 void WidgetDAO::registerCertificatesChains(
640     DbWidgetHandle widgetHandle,
641     CertificateSource certificateSource,
642     const CertificateChainList &
643     certificateChainList)
644 {
645     using namespace DPL::DB::ORM;
646     using namespace DPL::DB::ORM::wrt;
647     FOREACH(certChain, certificateChainList)
648     {
649         WidgetCertificate::Row row;
650         row.Set_app_id(widgetHandle);
651         row.Set_cert_source(certificateSource);
652         row.Set_encoded_chain(DPL::FromASCIIString(*certChain));
653
654         DO_INSERT(row, WidgetCertificate);
655     }
656 }
657
658 void WidgetDAO::registerWidgetSettings(DbWidgetHandle widgetHandle,
659                                        const WidgetRegisterInfo &regInfo)
660 {
661     using namespace DPL::DB::ORM;
662     using namespace DPL::DB::ORM::wrt;
663
664     const ConfigParserData& widgetConfigurationInfo = regInfo.configInfo;
665
666     FOREACH(pWidgetSetting, widgetConfigurationInfo.settingsList)
667     {
668         SettingsList::Row row;
669         row.Set_appId(widgetHandle);
670         row.Set_settingName(pWidgetSetting->m_name);
671         row.Set_settingValue(pWidgetSetting->m_value);
672
673         DO_INSERT(row, SettingsList)
674     }
675 }
676
677 void WidgetDAO::insertAppControlInfo(DbWidgetHandle handle,
678                                              DPL::String src,
679                                              DPL::String operation,
680                                              DPL::String uri,
681                                              DPL::String mime,
682                                              unsigned index,
683                                              unsigned disposition)
684 {
685     using namespace DPL::DB::ORM;
686     using namespace DPL::DB::ORM::wrt;
687
688     AppControlInfo::Row row;
689
690     row.Set_app_id(handle);
691     row.Set_execute_index(index);
692     row.Set_src(src);
693     row.Set_operation(operation);
694     row.Set_uri(uri);
695     row.Set_mime(mime);
696     row.Set_disposition(disposition);
697
698     DO_INSERT(row, AppControlInfo);
699 }
700
701 void WidgetDAO::registerAppControl(DbWidgetHandle widgetHandle,
702                                    const WidgetRegisterInfo &regInfo)
703 {
704     using namespace DPL::DB::ORM;
705     using namespace DPL::DB::ORM::wrt;
706     const ConfigParserData& widgetConfigurationInfo = regInfo.configInfo;
707
708     // appControlList
709     FOREACH(appControl_it, widgetConfigurationInfo.appControlList)
710     {
711         DPL::String src       = appControl_it->m_src;
712         DPL::String operation = appControl_it->m_operation;
713         unsigned index        = appControl_it->m_index;
714         unsigned disposition  = appControl_it->m_disposition ==
715             ConfigParserData::AppControlInfo::Disposition::INLINE ? 1 : 0;
716
717         if (!appControl_it->m_uriList.empty())
718         {
719             FOREACH(uri_it, appControl_it->m_uriList)
720             {
721                 DPL::String uri = *uri_it;
722
723                 if (!appControl_it->m_mimeList.empty())
724                 {
725                     FOREACH(mime_it, appControl_it->m_mimeList)
726                     {
727                         DPL::String mime = *mime_it;
728
729                         insertAppControlInfo(widgetHandle, src, operation, uri, mime, index, disposition);
730                     }
731                 }
732                 else
733                 {
734                     DPL::String mime = L"";
735
736                     insertAppControlInfo(widgetHandle, src, operation, uri, mime, index, disposition);
737                 }
738             }
739         }
740         else
741         {
742             DPL::String uri = L"";
743
744             if (!appControl_it->m_mimeList.empty())
745             {
746                 FOREACH(mime_it, appControl_it->m_mimeList)
747                 {
748                     DPL::String mime = *mime_it;
749
750                     insertAppControlInfo(widgetHandle, src, operation, uri, mime, index, disposition);
751                 }
752             }
753             else
754             {
755                 DPL::String mime = L"";
756
757                 insertAppControlInfo(widgetHandle, src, operation, uri, mime, index, disposition);
758             }
759         }
760     }
761 }
762
763 void WidgetDAO::registerEncryptedResouceInfo(DbWidgetHandle widgetHandle,
764                                              const WidgetRegisterInfo &regInfo)
765 {
766     using namespace DPL::DB::ORM;
767     using namespace DPL::DB::ORM::wrt;
768
769     FOREACH(it, regInfo.encryptedFiles)
770     {
771         EncryptedResourceList::Row row;
772         row.Set_app_id(widgetHandle);
773         row.Set_resource(it->fileName);
774         row.Set_size(it->fileSize);
775
776         DO_INSERT(row, EncryptedResourceList)
777     }
778 }
779
780 void WidgetDAO::registerExternalLocations(
781     DbWidgetHandle widgetHandle,
782     const ExternalLocationList &
783     externals)
784 {
785     SQL_CONNECTION_EXCEPTION_HANDLER_BEGIN
786     {
787         using namespace DPL::DB::ORM;
788         using namespace DPL::DB::ORM::wrt;
789         DPL::DB::ORM::wrt::ScopedTransaction transaction(
790             &WrtDatabase::interface());
791         LogDebug("Inserting external files for widgetHandle: " << widgetHandle);
792         FOREACH(it, externals)
793         {
794             WidgetExternalLocations::Row row;
795             row.Set_app_id(widgetHandle);
796             row.Set_path(DPL::FromUTF8String(*it));
797
798             DO_INSERT(row, WidgetExternalLocations)
799         }
800         transaction.Commit();
801     }
802     SQL_CONNECTION_EXCEPTION_HANDLER_END("Failed to register external files");
803 }
804
805 void WidgetDAO::registerWidgetSecuritySettings(DbWidgetHandle widgetHandle)
806 {
807     using namespace DPL::DB::ORM;
808     using namespace DPL::DB::ORM::wrt;
809     WidgetSecuritySettings::Row row;
810     row.Set_app_id(widgetHandle);
811     row.Set_security_popup_usage(SETTINGS_TYPE_ON);
812     row.Set_geolocation_usage(SETTINGS_TYPE_ON);
813     row.Set_web_notification_usage(SETTINGS_TYPE_ON);
814     row.Set_web_database_usage(SETTINGS_TYPE_ON);
815     row.Set_file_system_usage(SETTINGS_TYPE_ON);
816
817     DO_INSERT(row, WidgetSecuritySettings)
818 }
819
820 void WidgetDAO::unregisterAllExternalLocations()
821 {
822     using namespace DPL::DB::ORM;
823     using namespace DPL::DB::ORM::wrt;
824     LogDebug("Deleting external files for widgetHandle: " << m_widgetHandle);
825     WRT_DB_DELETE(del, WidgetExternalLocations, &WrtDatabase::interface());
826     del->Where(Equals<WidgetExternalLocations::app_id>(m_widgetHandle));
827     del->Execute();
828 }
829
830 void WidgetDAO::unregisterWidget(const TizenAppId & tzAppId)
831 {
832     LogDebug("Unregistering widget from DB. tzAppId: " << tzAppId);
833     SQL_CONNECTION_EXCEPTION_HANDLER_BEGIN
834     {
835         DPL::DB::ORM::wrt::ScopedTransaction transaction(
836             &WrtDatabase::interface());
837         unregisterWidgetInternal(tzAppId);
838         transaction.Commit();
839     }
840     SQL_CONNECTION_EXCEPTION_HANDLER_END("Failed to unregister widget")
841 }
842
843 void WidgetDAO::unregisterWidget(WrtDB::DbWidgetHandle handle)
844 {
845     LogDebug("Unregistering widget from DB. Handle: " << handle);
846     SQL_CONNECTION_EXCEPTION_HANDLER_BEGIN
847     {
848         using namespace DPL::DB::ORM;
849         using namespace DPL::DB::ORM::wrt;
850         ScopedTransaction transaction(&WrtDatabase::interface());
851
852         // Delete from table Widget Info
853         WRT_DB_DELETE(del, WidgetInfo, &WrtDatabase::interface())
854         del->Where(Equals<WidgetInfo::app_id>(handle));
855         del->Execute();
856
857         transaction.Commit();
858     }
859     SQL_CONNECTION_EXCEPTION_HANDLER_END("Failed to unregister widget")
860 }
861
862 void WidgetDAO::unregisterWidgetInternal(
863     const TizenAppId & tzAppId)
864 {
865     using namespace DPL::DB::ORM;
866     using namespace DPL::DB::ORM::wrt;
867
868     DbWidgetHandle handle = getHandle(tzAppId);
869
870     // Delete from table Widget Info
871     WRT_DB_DELETE(del, WidgetInfo, &WrtDatabase::interface())
872     del->Where(Equals<WidgetInfo::app_id>(handle));
873     del->Execute();
874
875     // Deleting in other tables is done via "delete cascade" in SQL
876 }
877
878 #undef DO_INSERT
879
880 #undef SQL_CONNECTION_EXCEPTION_HANDLER_BEGIN
881 #undef SQL_CONNECTION_EXCEPTION_HANDLER_END
882 } // namespace WrtDB