Unused fields in WidgetRegisterInfo
[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     srand(time(NULL) + tv.tv_usec);
248     DbWidgetHandle widgetHandle;
249     do {
250         widgetHandle = rand();
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     registerAppService(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_base_folder(DPL::FromUTF8String(regInfo.baseFolder));
395     row.Set_webkit_plugins_required(widgetConfigurationInfo.flashNeeded);
396     row.Set_recognized(wacSecurity.isRecognized());
397     row.Set_wac_signed(wacSecurity.isWacSigned());
398     row.Set_distributor_signed(wacSecurity.isDistributorSigned());
399     row.Set_tizen_appid(tzAppId);
400     row.Set_tizen_pkgid(regInfo.tzPkgid);
401     {
402         std::stringstream tmp;
403         tmp << regInfo.minVersion;
404         row.Set_min_version(DPL::FromUTF8String(tmp.str()));
405     }
406     row.Set_back_supported(widgetConfigurationInfo.backSupported);
407     row.Set_access_network(widgetConfigurationInfo.accessNetwork);
408     row.Set_pkg_type(regInfo.packagingType.pkgType);
409
410     Try
411     {
412         DO_INSERT(row, WidgetInfo);
413     }
414     Catch(DPL::DB::SqlConnection::Exception::Base)
415     {
416         ReThrowMsg(WidgetDAO::Exception::DatabaseError,
417                    "Failed to register widget info.");
418     }
419
420     if (!handle) {
421         //get autoincremented value of widgetHandle
422         WRT_DB_SELECT(select, WidgetInfo, &WrtDatabase::interface())
423         select->Where(Equals<WidgetInfo::tizen_appid>(tzAppId));
424         return select->GetSingleValue<WidgetInfo::app_id>();
425     } else {
426         return *handle;
427     }
428 }
429
430 void WidgetDAO::registerWidgetLocalizedInfo(DbWidgetHandle widgetHandle,
431                                             const WidgetRegisterInfo &regInfo)
432 {
433     using namespace DPL::DB::ORM;
434     using namespace DPL::DB::ORM::wrt;
435
436     const ConfigParserData& widgetConfigurationInfo = regInfo.configInfo;
437
438     FOREACH(it, widgetConfigurationInfo.localizedDataSet)
439     {
440         const DPL::String& locale = it->first;
441         const ConfigParserData::LocalizedData& data = it->second;
442
443         LocalizedWidgetInfo::Row row;
444         row.Set_app_id(widgetHandle);
445         row.Set_widget_locale(locale);
446         row.Set_widget_name(data.name);
447         row.Set_widget_shortname(data.shortName);
448         row.Set_widget_description(data.description);
449         row.Set_widget_license(data.license);
450         row.Set_widget_license_file(data.licenseFile);
451         row.Set_widget_license_href(data.licenseHref);
452
453         DO_INSERT(row, LocalizedWidgetInfo)
454     }
455 }
456
457 void WidgetDAO::registerWidgetIcons(DbWidgetHandle widgetHandle,
458                                     const WidgetRegisterInfo &regInfo)
459 {
460     using namespace DPL::DB::ORM;
461     using namespace DPL::DB::ORM::wrt;
462
463     FOREACH(i, regInfo.localizationData.icons)
464     {
465         wrt::WidgetIcon::icon_id::ColumnType icon_id;
466         {
467             wrt::WidgetIcon::Row row;
468             row.Set_app_id(widgetHandle);
469             row.Set_icon_src(i->src);
470             row.Set_icon_width(i->width);
471             row.Set_icon_height(i->height);
472
473             WRT_DB_INSERT(insert, wrt::WidgetIcon, &WrtDatabase::interface())
474             insert->Values(row);
475             icon_id = static_cast<int>(insert->Execute());
476         }
477
478         FOREACH(j, i->availableLocales)
479         {
480             WidgetLocalizedIcon::Row row;
481             row.Set_app_id(widgetHandle);
482             row.Set_icon_id(icon_id);
483             row.Set_widget_locale(*j);
484             DO_INSERT(row, WidgetLocalizedIcon)
485         }
486     }
487 }
488
489 void WidgetDAO::registerWidgetStartFile(DbWidgetHandle widgetHandle,
490                                         const WidgetRegisterInfo &regInfo)
491 {
492     using namespace DPL::DB::ORM;
493     using namespace DPL::DB::ORM::wrt;
494
495     FOREACH(i, regInfo.localizationData.startFiles)
496     {
497         WidgetStartFile::start_file_id::ColumnType startFileID;
498         {
499             WidgetStartFile::Row row;
500             row.Set_app_id(widgetHandle);
501             row.Set_src(i->path);
502
503             WRT_DB_INSERT(insert, WidgetStartFile, &WrtDatabase::interface())
504             insert->Values(row);
505             startFileID = static_cast<int>(insert->Execute());
506         }
507
508         FOREACH(j, i->propertiesForLocales)
509         {
510             WidgetLocalizedStartFile::Row row;
511             row.Set_app_id(widgetHandle);
512             row.Set_start_file_id(startFileID);
513             row.Set_widget_locale(j->first);
514             row.Set_type(j->second.type);
515             row.Set_encoding(j->second.encoding);
516
517             DO_INSERT(row, WidgetLocalizedStartFile)
518         }
519     }
520 }
521
522 void WidgetDAO::registerWidgetFeatures(DbWidgetHandle widgetHandle,
523                                        const WidgetRegisterInfo &regInfo)
524 {
525     using namespace DPL::DB::ORM;
526     const ConfigParserData& widgetConfigurationInfo = regInfo.configInfo;
527
528     FOREACH(pWidgetFeature, widgetConfigurationInfo.featuresList)
529     {
530         wrt::WidgetFeature::Row widgetFeature;
531         widgetFeature.Set_app_id(widgetHandle);
532         widgetFeature.Set_name(pWidgetFeature->name);
533         widgetFeature.Set_required(pWidgetFeature->required);
534         widgetFeature.Set_rejected(false);
535
536         wrt::WidgetFeature::widget_feature_id::ColumnType widgetFeatureID;
537         {
538             WRT_DB_INSERT(insert, wrt::WidgetFeature, &WrtDatabase::interface())
539             insert->Values(widgetFeature);
540             widgetFeatureID = static_cast<int>(insert->Execute());
541         }
542
543         // Insert into table FeatureParam
544         wrt::FeatureParam::Row featureParam;
545         featureParam.Set_widget_feature_id(widgetFeatureID);
546
547         FOREACH(iter, pWidgetFeature->paramsList)
548         {
549             featureParam.Set_name(iter->name);
550             featureParam.Set_value(iter->value);
551
552             DO_INSERT(featureParam, wrt::FeatureParam)
553         }
554     }
555 }
556
557 void WidgetDAO::registerWidgetPrivilege(DbWidgetHandle widgetHandle,
558                                         const WidgetRegisterInfo &regInfo)
559 {
560     using namespace DPL::DB::ORM;
561     const ConfigParserData& widgetConfigurationInfo = regInfo.configInfo;
562
563     FOREACH(it, widgetConfigurationInfo.privilegeList)
564     {
565         wrt::WidgetPrivilege::Row widgetPrivilege;
566         widgetPrivilege.Set_app_id(widgetHandle);
567         widgetPrivilege.Set_name(it->name);
568
569         DO_INSERT(widgetPrivilege, wrt::WidgetPrivilege)
570     }
571 }
572
573 void WidgetDAO::updateFeatureRejectStatus(const DbWidgetFeature &widgetFeature)
574 {
575     // This function could be merged with registerWidgetFeature but it requires
576     // desing change:
577     // 1. Check "ace step" in installer must be done before "update database
578     // step"
579     // And:
580     // ConfigurationParserData shouldn't be called "ParserData" any more.
581     using namespace DPL::DB::ORM;
582
583     wrt::ScopedTransaction transaction(&WrtDatabase::interface());
584     WRT_DB_SELECT(select, wrt::WidgetFeature, &WrtDatabase::interface())
585     select->Where(And(Equals<wrt::WidgetFeature::app_id>(m_widgetHandle),
586                       Equals<wrt::WidgetFeature::name>(widgetFeature.name)));
587
588     auto row = select->GetSingleRow();
589     row.Set_rejected(widgetFeature.rejected);
590
591     WRT_DB_UPDATE(update, wrt::WidgetFeature, &WrtDatabase::interface())
592     update->Where(And(Equals<wrt::WidgetFeature::app_id>(m_widgetHandle),
593                       Equals<wrt::WidgetFeature::name>(widgetFeature.name)));
594     update->Values(row);
595     update->Execute();
596     transaction.Commit();
597 }
598
599 void WidgetDAO::registerWidgetWindowModes(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(i, widgetConfigurationInfo.windowModes)
607     {
608         wrt::WidgetWindowModes::Row windowMode;
609         windowMode.Set_app_id(widgetHandle);
610         windowMode.Set_window_mode(*i);
611
612         DO_INSERT(windowMode, wrt::WidgetWindowModes)
613     }
614 }
615
616 void WidgetDAO::registerWidgetWarpInfo(DbWidgetHandle widgetHandle,
617                                        const WidgetRegisterInfo &regInfo)
618 {
619     using namespace DPL::DB::ORM;
620     using namespace DPL::DB::ORM::wrt;
621     const ConfigParserData& widgetConfigurationInfo = regInfo.configInfo;
622
623     FOREACH(AccIt, widgetConfigurationInfo.accessInfoSet)
624     {
625         WidgetWARPInfo::Row row;
626         row.Set_app_id(widgetHandle);
627         row.Set_iri(AccIt->m_strIRI);
628         row.Set_subdomain_access(static_cast <int>(
629                                      AccIt->m_bSubDomainAccess));
630
631         DO_INSERT(row, WidgetWARPInfo)
632     }
633 }
634
635 void WidgetDAO::registerWidgetCertificates(DbWidgetHandle widgetHandle,
636                                            const IWacSecurity &wacSecurity)
637 {
638     using namespace DPL::DB::ORM;
639     using namespace DPL::DB::ORM::wrt;
640
641     FOREACH(it, wacSecurity.getCertificateList())
642     {
643         WidgetCertificateFingerprint::Row row;
644         row.Set_app_id(widgetHandle);
645         row.Set_owner(it->owner);
646         row.Set_chainid(it->chainId);
647         row.Set_type(it->type);
648         row.Set_md5_fingerprint(DPL::FromUTF8String(it->strMD5Fingerprint));
649         row.Set_sha1_fingerprint(DPL::FromUTF8String(it->strSHA1Fingerprint));
650         row.Set_common_name(it->strCommonName);
651
652         DO_INSERT(row, WidgetCertificateFingerprint)
653     }
654 }
655
656 void WidgetDAO::registerCertificatesChains(
657     DbWidgetHandle widgetHandle,
658     CertificateSource certificateSource,
659     const CertificateChainList &
660     certificateChainList)
661 {
662     using namespace DPL::DB::ORM;
663     using namespace DPL::DB::ORM::wrt;
664     FOREACH(certChain, certificateChainList)
665     {
666         WidgetCertificate::Row row;
667         row.Set_app_id(widgetHandle);
668         row.Set_cert_source(certificateSource);
669         row.Set_encoded_chain(DPL::FromASCIIString(*certChain));
670
671         DO_INSERT(row, WidgetCertificate);
672     }
673 }
674
675 void WidgetDAO::registerWidgetSettings(DbWidgetHandle widgetHandle,
676                                        const WidgetRegisterInfo &regInfo)
677 {
678     using namespace DPL::DB::ORM;
679     using namespace DPL::DB::ORM::wrt;
680
681     const ConfigParserData& widgetConfigurationInfo = regInfo.configInfo;
682
683     FOREACH(pWidgetSetting, widgetConfigurationInfo.settingsList)
684     {
685         SettingsList::Row row;
686         row.Set_appId(widgetHandle);
687         row.Set_settingName(pWidgetSetting->m_name);
688         row.Set_settingValue(pWidgetSetting->m_value);
689
690         DO_INSERT(row, SettingsList)
691     }
692 }
693
694 void WidgetDAO::registerAppService(DbWidgetHandle widgetHandle,
695                                    const WidgetRegisterInfo &regInfo)
696 {
697     using namespace DPL::DB::ORM;
698     using namespace DPL::DB::ORM::wrt;
699     const ConfigParserData& widgetConfigurationInfo = regInfo.configInfo;
700
701     FOREACH(ASIt, widgetConfigurationInfo.appServiceList)
702     {
703         ApplicationServiceInfo::Row row;
704         row.Set_app_id(widgetHandle);
705         row.Set_src(ASIt->m_src);
706         row.Set_operation(ASIt->m_operation);
707         row.Set_scheme(ASIt->m_scheme);
708         row.Set_mime(ASIt->m_mime);
709
710         DO_INSERT(row, ApplicationServiceInfo)
711     }
712 }
713
714 void WidgetDAO::registerEncryptedResouceInfo(DbWidgetHandle widgetHandle,
715                                              const WidgetRegisterInfo &regInfo)
716 {
717     using namespace DPL::DB::ORM;
718     using namespace DPL::DB::ORM::wrt;
719
720     FOREACH(it, regInfo.encryptedFiles)
721     {
722         EncryptedResourceList::Row row;
723         row.Set_app_id(widgetHandle);
724         row.Set_resource(it->fileName);
725         row.Set_size(it->fileSize);
726
727         DO_INSERT(row, EncryptedResourceList)
728     }
729 }
730
731 void WidgetDAO::registerExternalLocations(
732     DbWidgetHandle widgetHandle,
733     const ExternalLocationList &
734     externals)
735 {
736     SQL_CONNECTION_EXCEPTION_HANDLER_BEGIN
737     {
738         using namespace DPL::DB::ORM;
739         using namespace DPL::DB::ORM::wrt;
740         DPL::DB::ORM::wrt::ScopedTransaction transaction(
741             &WrtDatabase::interface());
742         LogDebug("Inserting external files for widgetHandle: " << widgetHandle);
743         FOREACH(it, externals)
744         {
745             WidgetExternalLocations::Row row;
746             row.Set_app_id(widgetHandle);
747             row.Set_path(DPL::FromUTF8String(*it));
748
749             DO_INSERT(row, WidgetExternalLocations)
750         }
751         transaction.Commit();
752     }
753     SQL_CONNECTION_EXCEPTION_HANDLER_END("Failed to register external files");
754 }
755
756 void WidgetDAO::registerWidgetSecuritySettings(DbWidgetHandle widgetHandle)
757 {
758     using namespace DPL::DB::ORM;
759     using namespace DPL::DB::ORM::wrt;
760     WidgetSecuritySettings::Row row;
761     row.Set_app_id(widgetHandle);
762     row.Set_security_popup_usage(SETTINGS_TYPE_ON);
763     row.Set_geolocation_usage(SETTINGS_TYPE_ON);
764     row.Set_web_notification_usage(SETTINGS_TYPE_ON);
765     row.Set_web_database_usage(SETTINGS_TYPE_ON);
766     row.Set_file_system_usage(SETTINGS_TYPE_ON);
767
768     DO_INSERT(row, WidgetSecuritySettings)
769 }
770
771 void WidgetDAO::unregisterAllExternalLocations()
772 {
773     using namespace DPL::DB::ORM;
774     using namespace DPL::DB::ORM::wrt;
775     LogDebug("Deleting external files for widgetHandle: " << m_widgetHandle);
776     WRT_DB_DELETE(del, WidgetExternalLocations, &WrtDatabase::interface());
777     del->Where(Equals<WidgetExternalLocations::app_id>(m_widgetHandle));
778     del->Execute();
779 }
780
781 void WidgetDAO::unregisterWidget(const TizenAppId & tzAppId)
782 {
783     LogDebug("Unregistering widget from DB. tzAppId: " << tzAppId);
784     SQL_CONNECTION_EXCEPTION_HANDLER_BEGIN
785     {
786         DPL::DB::ORM::wrt::ScopedTransaction transaction(
787             &WrtDatabase::interface());
788         unregisterWidgetInternal(tzAppId);
789         transaction.Commit();
790     }
791     SQL_CONNECTION_EXCEPTION_HANDLER_END("Failed to unregister widget")
792 }
793
794 void WidgetDAO::unregisterWidget(WrtDB::DbWidgetHandle handle)
795 {
796     LogDebug("Unregistering widget from DB. Handle: " << handle);
797     SQL_CONNECTION_EXCEPTION_HANDLER_BEGIN
798     {
799         using namespace DPL::DB::ORM;
800         using namespace DPL::DB::ORM::wrt;
801         ScopedTransaction transaction(&WrtDatabase::interface());
802
803         // Delete from table Widget Info
804         WRT_DB_DELETE(del, WidgetInfo, &WrtDatabase::interface())
805         del->Where(Equals<WidgetInfo::app_id>(handle));
806         del->Execute();
807
808         transaction.Commit();
809     }
810     SQL_CONNECTION_EXCEPTION_HANDLER_END("Failed to unregister widget")
811 }
812
813 void WidgetDAO::unregisterWidgetInternal(
814     const TizenAppId & tzAppId)
815 {
816     using namespace DPL::DB::ORM;
817     using namespace DPL::DB::ORM::wrt;
818
819     DbWidgetHandle handle = getHandle(tzAppId);
820
821     // Delete from table Widget Info
822     WRT_DB_DELETE(del, WidgetInfo, &WrtDatabase::interface())
823     del->Where(Equals<WidgetInfo::app_id>(handle));
824     del->Execute();
825
826     // Deleting in other tables is done via "delete cascade" in SQL
827 }
828
829 #undef DO_INSERT
830
831 #undef SQL_CONNECTION_EXCEPTION_HANDLER_BEGIN
832 #undef SQL_CONNECTION_EXCEPTION_HANDLER_END
833 } // namespace WrtDB