[Release] wrt-installer_0.1.90
[framework/web/wrt-installer.git] / src / jobs / widget_install / task_widget_config.cpp
index bf5301a..b8db386 100644 (file)
@@ -20,6 +20,7 @@
  * @brief   Implementation file for installer task widget config
  */
 
+#include <map>
 #include <sstream>
 #include <string>
 #include <sys/stat.h>
@@ -33,6 +34,7 @@
 #include <dpl/utils/wrt_global_settings.h>
 #include <dpl/utils/wrt_utility.h>
 #include <dpl/wrt-dao-ro/global_config.h>
+#include <dpl/wrt-dao-ro/config_parser_data.h>
 #include <dpl/wrt-dao-rw/feature_dao.h>
 
 #include <libiriwrapper.h>
 #include <widget_install/widget_install_context.h>
 #include <widget_install/widget_install_errors.h>
 #include <widget_parser.h>
-#include <wrt_error.h>
-
+#include <web_provider_plugin_info.h>
+#include <web_provider_livebox_info.h>
+#include <manifest.h>
 
 namespace { // anonymous
 const DPL::String BR = DPL::FromUTF8String("<br>");
 const std::string WIDGET_NOT_COMPATIBLE = "This widget is "
-        "not compatible with WRT.<br><br>";
+                                          "not compatible with WRT.<br><br>";
 const std::string QUESTION = "Do you want to install it anyway?";
 
 const char *const DEFAULT_LANGUAGE = "default";
@@ -58,22 +61,21 @@ const char *const DEFAULT_LANGUAGE = "default";
 const char *const WRT_WIDGET_CONFIG_FILE_NAME = "config.xml";
 
 const std::string WINDGET_INSTALL_NETWORK_ACCESS = "network access";
-}
 
+const char WRT_WIDGETS_XML_SCHEMA[] = "/usr/etc/wrt-installer/widgets.xsd";
+}
 
 namespace Jobs {
 namespace WidgetInstall {
 void InstallerTaskWidgetPopupData::PopupData::addWidgetInfo(
-        const DPL::String &info)
+    const DPL::String &info)
 {
     widgetInfo = info;
 }
 
 TaskWidgetConfig::TaskWidgetConfig(InstallerContext& installContext) :
     DPL::TaskDecl<TaskWidgetConfig>(this),
-    WidgetInstallPopup(installContext),
     m_installContext(installContext)
-
 {
     AddStep(&TaskWidgetConfig::StepProcessConfigurationFile);
     AddStep(&TaskWidgetConfig::ReadLocaleFolders);
@@ -81,16 +83,10 @@ TaskWidgetConfig::TaskWidgetConfig(InstallerContext& installContext) :
     AddStep(&TaskWidgetConfig::ProcessBackgroundPageFile);
     AddStep(&TaskWidgetConfig::ProcessLocalizedIcons);
     AddStep(&TaskWidgetConfig::ProcessWidgetInstalledPath);
+    AddStep(&TaskWidgetConfig::ProcessAppControlInfo);
+    AddStep(&TaskWidgetConfig::ProcessSecurityModel);
     AddStep(&TaskWidgetConfig::StepVerifyFeatures);
     AddStep(&TaskWidgetConfig::StepCheckMinVersionInfo);
-
-    if (!GlobalSettings::TestModeEnabled() && !m_installContext.m_quiet) {
-        AddStep(&TaskWidgetConfig::StepCancelWidgetInstallationAfterVerifyFeatures);
-        AddStep(&TaskWidgetConfig::StepShowWidgetInfo);
-        AddStep(&TaskWidgetConfig::StepCancelWidgetInstallation);
-        AddStep(&TaskWidgetConfig::StepCancelWidgetInstallationAfterMinVersion);
-        AddStep(&TaskWidgetConfig::StepDeletePopupWin);
-    }
 }
 
 void TaskWidgetConfig::StepProcessConfigurationFile()
@@ -107,16 +103,6 @@ void TaskWidgetConfig::StepProcessConfigurationFile()
         LogError("Parsing failed.");
         ReThrow(Exceptions::WidgetConfigFileInvalid);
     }
-    Try
-    {
-        // To get widget type for distribute WAC, TIZEN WebApp
-        setApplicationType();
-    }
-    Catch(Exception::ConfigParseFailed)
-    {
-        LogError("Config.xml has more than one namespace");
-        ReThrow(Exceptions::WidgetConfigFileInvalid);
-    }
 
     m_installContext.job->UpdateProgress(
         InstallerContext::INSTALL_WIDGET_CONFIG1,
@@ -129,45 +115,48 @@ void TaskWidgetConfig::ReadLocaleFolders()
     //Adding default locale
     m_localeFolders.insert(L"");
 
-    std::string localePath = m_installContext.locations->getConfigurationDir() + "/locales";
+    std::string localePath =
+        m_installContext.locations->getConfigurationDir() + "/locales";
     DIR* localeDir = opendir(localePath.c_str());
     if (!localeDir) {
         LogDebug("No /locales directory in the widget package.");
         return;
     }
 
-    struct dirent* dirent;
     struct stat statStruct;
-    do {
-        errno = 0;
-        if ((dirent = readdir(localeDir))) {
-            DPL::String dirName = DPL::FromUTF8String(dirent->d_name);
-            std::string absoluteDirName = localePath + "/";
-            absoluteDirName += dirent->d_name;
-
-            if (stat(absoluteDirName.c_str(), &statStruct) != 0) {
-                LogError("stat() failed with " << DPL::GetErrnoString());
-                continue;
-            }
+    struct dirent dirent;
+    struct dirent *result;
+    int return_code;
+    errno = 0;
+    for (return_code = readdir_r(localeDir, &dirent, &result);
+            result != NULL && return_code == 0;
+            return_code = readdir_r(localeDir, &dirent, &result))
+    {
+        DPL::String dirName = DPL::FromUTF8String(dirent.d_name);
+        std::string absoluteDirName = localePath + "/";
+        absoluteDirName += dirent.d_name;
 
-            if (S_ISDIR(statStruct.st_mode)) {
-                //Yes, we ignore current, parent & hidden directories
-                if (dirName[0] != L'.') {
-                    LogDebug("Adding locale directory \"" << dirName << "\"");
-                    m_localeFolders.insert(dirName);
-                }
+        if (stat(absoluteDirName.c_str(), &statStruct) != 0) {
+            LogError("stat() failed with " << DPL::GetErrnoString());
+            continue;
+        }
+
+        if (S_ISDIR(statStruct.st_mode)) {
+            //Yes, we ignore current, parent & hidden directories
+            if (dirName[0] != L'.') {
+                LogDebug("Adding locale directory \"" << dirName << "\"");
+                m_localeFolders.insert(dirName);
             }
         }
     }
-    while (dirent);
 
-    if (errno != 0) {
-        LogError("readdir() failed with " << DPL::GetErrnoString());
+    if (return_code != 0 || errno != 0) {
+        LogError("readdir_r() failed with " << DPL::GetErrnoString());
     }
 
     if (-1 == TEMP_FAILURE_RETRY(closedir(localeDir))) {
         LogError("Failed to close dir: " << localePath << " with error: "
-                << DPL::GetErrnoString());
+                                         << DPL::GetErrnoString());
     }
 }
 
@@ -185,7 +174,7 @@ void TaskWidgetConfig::ProcessLocalizedStartFiles()
     ProcessStartFile(S(L"index.svg"), S(L"image/svg+xml"));
     ProcessStartFile(S(L"index.xhtml"), S(L"application/xhtml+xml"));
     ProcessStartFile(S(L"index.xht"), S(L"application/xhtml+xml"));
-    // TODO: (l.wrzosek) we need better check if in current locales widget is valid.
+    // TODO: we need better check if in current locales widget is valid
     FOREACH(it, m_installContext.widgetConfig.localizationData.startFiles) {
         if (it->propertiesForLocales.size() > 0) {
             return;
@@ -196,9 +185,9 @@ void TaskWidgetConfig::ProcessLocalizedStartFiles()
 }
 
 void TaskWidgetConfig::ProcessStartFile(const DPL::OptionalString& path,
-        const DPL::OptionalString& type,
-        const DPL::OptionalString& encoding,
-        bool typeForcedInConfig)
+                                        const DPL::OptionalString& type,
+                                        const DPL::OptionalString& encoding,
+                                        bool typeForcedInConfig)
 {
     using namespace WrtDB;
 
@@ -214,7 +203,8 @@ void TaskWidgetConfig::ProcessStartFile(const DPL::OptionalString& path,
 
             DPL::String relativePath = pathPrefix + *path;
             DPL::String absolutePath = DPL::FromUTF8String(
-                    m_installContext.locations->getConfigurationDir()) + L"/" + relativePath;
+                    m_installContext.locations->getConfigurationDir()) + L"/" +
+                relativePath;
 
             // get property data from packaged app
             if (WrtUtilFileExists(DPL::ToUTF8String(absolutePath))) {
@@ -235,7 +225,7 @@ void TaskWidgetConfig::ProcessStartFile(const DPL::OptionalString& path,
                     } else {
                         MimeTypeUtils::MimeAttributes attributes =
                             MimeTypeUtils::getMimeAttributes(
-                            startFileProperties.type);
+                                startFileProperties.type);
                         if (attributes.count(L"charset") > 0) {
                             startFileProperties.encoding =
                                 attributes[L"charset"];
@@ -260,11 +250,14 @@ void TaskWidgetConfig::ProcessStartFile(const DPL::OptionalString& path,
                 // set property data for hosted start url
                 // Hosted start url only support TIZEN WebApp
                 if (m_installContext.widgetConfig.webAppType ==
-                        APP_TYPE_TIZENWEBAPP)
+                    APP_TYPE_TIZENWEBAPP)
                 {
-                    std::string startPath =  DPL::ToUTF8String(startFileData.path);
+                    std::string startPath = DPL::ToUTF8String(
+                            startFileData.path);
 
-                    if (strstr(startPath.c_str(), "http") == startPath.c_str()) {
+                    if (strstr(startPath.c_str(),
+                               "http") == startPath.c_str())
+                    {
                         WidgetRegisterInfo::StartFileProperties
                             startFileProperties;
                         if (!!type) {
@@ -290,12 +283,12 @@ void TaskWidgetConfig::ProcessBackgroundPageFile()
     if (!!m_installContext.widgetConfig.configInfo.backgroundPage) {
         // check whether file exists
         DPL::String backgroundPagePath = DPL::FromUTF8String(
-            m_installContext.locations->getConfigurationDir()) + L"/" +
+                m_installContext.locations->getConfigurationDir()) + L"/" +
             *m_installContext.widgetConfig.configInfo.backgroundPage;
         //if no then cancel installation
         if (!WrtUtilFileExists(DPL::ToUTF8String(backgroundPagePath))) {
             ThrowMsg(Exceptions::WidgetConfigFileInvalid,
-                    L"Given background page file not found in archive");
+                     L"Given background page file not found in archive");
         }
     }
 }
@@ -320,7 +313,8 @@ void TaskWidgetConfig::ProcessIcon(const WrtDB::ConfigParserData::Icon& icon)
     LogInfo("enter");
     bool isAnyIconValid = false;
     //In case a default filename is passed as custom filename in config.xml, we
-    //need to keep a set of already processed filenames to avoid icon duplication
+    //need to keep a set of already processed filenames to avoid icon
+    // duplication
     //in database.
 
     using namespace WrtDB;
@@ -341,7 +335,8 @@ void TaskWidgetConfig::ProcessIcon(const WrtDB::ConfigParserData::Icon& icon)
 
         DPL::String relativePath = pathPrefix + icon.src;
         DPL::String absolutePath = DPL::FromUTF8String(
-                m_installContext.locations->getConfigurationDir()) + L"/" + relativePath;
+                m_installContext.locations->getConfigurationDir()) + L"/" +
+            relativePath;
 
         if (WrtUtilFileExists(DPL::ToUTF8String(absolutePath))) {
             DPL::String type = MimeTypeUtils::identifyFileMimeType(absolutePath);
@@ -355,8 +350,7 @@ void TaskWidgetConfig::ProcessIcon(const WrtDB::ConfigParserData::Icon& icon)
         }
     }
 
-    if(isAnyIconValid)
-    {
+    if (isAnyIconValid) {
         WidgetRegisterInfo::LocalizedIcon localizedIcon(icon,
                                                         localesAvailableForIcon);
         m_installContext.widgetConfig.localizationData.icons.push_back(
@@ -368,89 +362,161 @@ void TaskWidgetConfig::ProcessWidgetInstalledPath()
 {
     LogDebug("ProcessWidgetInstalledPath");
     m_installContext.widgetConfig.widgetInstalledPath =
-        DPL::FromUTF8String(m_installContext.locations->getPackageInstallationDir());
+        DPL::FromUTF8String(
+            m_installContext.locations->getPackageInstallationDir());
 }
 
-void TaskWidgetConfig::StepCancelWidgetInstallationAfterVerifyFeatures()
+void TaskWidgetConfig::ProcessAppControlInfo()
 {
-    LogDebug("StepCancelWidgetInstallationAfterVerifyFeatures");
-    if (InfoPopupButton::WRT_POPUP_BUTTON_CANCEL == m_installCancel) {
-        m_installCancel = WRT_POPUP_BUTTON;
-        destroyPopup();
-        ThrowMsg(Exceptions::WidgetConfigFileInvalid, "Widget not allowed");
+    LogDebug("ProcessAppControlInfo");
+    using namespace WrtDB;
+
+    WrtDB::ConfigParserData::AppControlInfo::Disposition disposition =
+        WrtDB::ConfigParserData::AppControlInfo::Disposition::WINDOW;
+    FOREACH(it, m_installContext.widgetConfig.configInfo.settingsList) {
+        if (!strcmp(DPL::ToUTF8String(it->m_name).c_str(), "nodisplay") &&
+            !strcmp(DPL::ToUTF8String(it->m_value).c_str(), "true"))
+        {
+            disposition =
+                WrtDB::ConfigParserData::AppControlInfo::Disposition::INLINE;
+        }
     }
-}
 
-void TaskWidgetConfig::StepCancelWidgetInstallation()
-{
-    if (InfoPopupButton::WRT_POPUP_BUTTON_CANCEL == m_installCancel) {
-        m_installCancel = WRT_POPUP_BUTTON;
-        destroyPopup();
-        ThrowMsg(Exceptions::NotAllowed, "Widget not allowed");
+    std::map<std::string, int> srcMap;
+    int index = 0;
+    // index = 0 is reserved for start file
+    FOREACH(startFileIt, m_installContext.widgetConfig.localizationData.startFiles)
+    {
+        if (!startFileIt->propertiesForLocales.empty()) {
+            std::string src = DPL::ToUTF8String(startFileIt->path);
+             if (srcMap.find(src) == srcMap.end()) {
+                LogDebug("Insert [" << src << "," << index << "]");
+                srcMap.insert(std::pair<std::string, int>(src, index++));
+            }
+        }
     }
-}
 
-void TaskWidgetConfig::StepCancelWidgetInstallationAfterMinVersion()
-{
-    if (InfoPopupButton::WRT_POPUP_BUTTON_CANCEL == m_installCancel) {
-        m_installCancel = WRT_POPUP_BUTTON;
-        destroyPopup();
-        ThrowMsg(Exceptions::NotAllowed, "WRT version incompatible.");
+    FOREACH(appControlIt, m_installContext.widgetConfig.configInfo.appControlList)
+    {
+        appControlIt->m_disposition = disposition;
+        std::string src = DPL::ToUTF8String(appControlIt->m_src);
+        LogDebug("src = [" << src << "]");
+        std::map<std::string, int>::iterator findIt = srcMap.find(src);
+        if (findIt == srcMap.end()) {
+            LogDebug("Insert [" << src << "," << index << "]");
+            srcMap.insert(std::pair<std::string, int>(src, index));
+            appControlIt->m_index = index++;
+        } else {
+            LogDebug("Exist  [" << src << "," << findIt->second << "]");
+            appControlIt->m_index = findIt->second;
+        }
     }
 }
 
-void TaskWidgetConfig::createInstallPopup(PopupType type, const std::string &label)
+void TaskWidgetConfig::ProcessSecurityModel()
 {
-    m_installContext.job->Pause();
-    if (m_popup)
-        destroyPopup();
+    // 0104.  If the "required_version" specified in the Web Application's
+    // configuration is 2.2 or higher and if the Web Application's
+    // configuration is "CSP-compatible configuration", then the WRT MUST be
+    // set to "CSP-based security mode". Otherwise, the WRT MUST be set to
+    // "WARP-based security mode".
+    // 0105.  A Web Application configuration is "CSP-compatible configuration"
+    // if the configuration includes one or more of
+    // <tizen:content-security-policy> /
+    // <tizen:content-security-policy-report-only> /
+    // <tizen:allow-navigation> elements.
+
+    bool isSecurityModelV1 = false;
+    bool isSecurityModelV2 = false;
+    std::string securityModelV2supportedVersion = "2.2";
+    WrtDB::ConfigParserData &data = m_installContext.widgetConfig.configInfo;
+
+    // Parse required version
+    long majorWidget = 0, minorWidget = 0, microWidget = 0;
+    if (!parseVersionString(DPL::ToUTF8String(*data.tizenMinVersionRequired),
+                            majorWidget,
+                            minorWidget,
+                            microWidget))
+    {
+        ThrowMsg(Exceptions::NotAllowed, "Wrong version string");
+    }
 
-    bool ret = createPopup();
-    if (ret)
+    // Parse since version (CSP & allow-navigation start to support since 2.2)
+    long majorSupported = 0, minorSupported = 0, microSupported = 0;
+    if (!parseVersionString(securityModelV2supportedVersion,
+                            majorSupported,
+                            minorSupported,
+                            microSupported))
     {
-        loadPopup( type, label);
-        showPopup();
+        ThrowMsg(Exceptions::NotAllowed, "Wrong version string");
     }
-}
 
-void TaskWidgetConfig::StepDeletePopupWin()
-{
-    destroyPopup();
-}
+    if (majorWidget < majorSupported ||
+        (majorWidget == majorSupported && minorWidget < minorSupported) ||
+        (majorWidget == majorSupported && minorWidget == minorSupported
+         && microWidget < microSupported))
+    {
+        // Under 2.2, clear v2 data
+        data.cspPolicy = DPL::OptionalString::Null;
+        data.cspPolicyReportOnly = DPL::OptionalString::Null;
+        data.allowNavigationInfoList.clear();
+    } else {
+        // More than 2.2, if v2 is defined, clear v1 data
+        if (!data.cspPolicy.IsNull() ||
+            !data.cspPolicyReportOnly.IsNull() ||
+            !data.allowNavigationInfoList.empty())
+        {
+            data.accessInfoSet.clear();
+        }
+    }
 
-void TaskWidgetConfig::StepShowWidgetInfo()
-{
-    if (!m_popupData.widgetInfo.empty()) {
-            std::string label = DPL::ToUTF8String(m_popupData.widgetInfo);
-            createInstallPopup(PopupType::WIDGET_FEATURE_INFO, label);
-        m_installContext.job->UpdateProgress(
-            InstallerContext::INSTALL_WIDGET_CONFIG2,
-            "Show Widget Info Finished");
+    // WARP is V1
+    if (!data.accessInfoSet.empty()) {
+        isSecurityModelV1 = true;
+    }
+
+    // CSP & allow-navigation is V2
+    if (!data.cspPolicy.IsNull() ||
+        !data.cspPolicyReportOnly.IsNull() ||
+        !data.allowNavigationInfoList.empty())
+    {
+        isSecurityModelV2 = true;
+    }
+
+    if (isSecurityModelV1 && isSecurityModelV2) {
+        LogError("Security model is conflict");
+        ThrowMsg(Exceptions::NotAllowed, "Security model is conflict");
+    } else if (isSecurityModelV1) {
+        data.securityModelVersion =
+            WrtDB::ConfigParserData::SecurityModelVersion::SECURITY_MODEL_V1;
+    } else if (isSecurityModelV2) {
+        data.securityModelVersion =
+            WrtDB::ConfigParserData::SecurityModelVersion::SECURITY_MODEL_V2;
+    } else {
+        data.securityModelVersion =
+            WrtDB::ConfigParserData::SecurityModelVersion::SECURITY_MODEL_V1;
     }
+
+    m_installContext.job->UpdateProgress(
+        InstallerContext::INSTALL_WIDGET_CONFIG2,
+        "Finished process security model");
 }
 
 void TaskWidgetConfig::StepCheckMinVersionInfo()
 {
     if (!isMinVersionCompatible(
-                m_installContext.widgetConfig.webAppType.appType,
-                m_installContext.widgetConfig.minVersion)) {
-        if(!GlobalSettings::TestModeEnabled() && !m_installContext.m_quiet)
-        {
-            LogDebug("Platform version to low - launching");
-            std::string label = WIDGET_NOT_COMPATIBLE + QUESTION;
-            createInstallPopup(PopupType::WIDGET_MIN_VERSION, label);
-        }
-        else
-        {
-            LogError("Platform version lower than required -> cancelling installation");
-            ThrowMsg(Exceptions::NotAllowed,
-                    "Platform version does not meet requirements");
-        }
+            m_installContext.widgetConfig.webAppType.appType,
+            m_installContext.widgetConfig.minVersion))
+    {
+        LogError(
+            "Platform version lower than required -> cancelling installation");
+        ThrowMsg(Exceptions::NotAllowed,
+                 "Platform version does not meet requirements");
     }
 
     m_installContext.job->UpdateProgress(
-            InstallerContext::INSTALL_WIDGET_CONFIG2,
-            "Check MinVersion Finished");
+        InstallerContext::INSTALL_WIDGET_CONFIG2,
+        "Check MinVersion Finished");
 }
 
 void TaskWidgetConfig::StepVerifyFeatures()
@@ -474,37 +540,17 @@ void TaskWidgetConfig::StepVerifyFeatures()
             ThrowMsg(
                 Exceptions::WidgetConfigFileInvalid,
                 "This app type [" <<
-                m_installContext.widgetConfig.webAppType.getApptypeToString() <<
+                m_installContext.widgetConfig.webAppType.getApptypeToString()
+                                  <<
                 "] cannot be allowed to use [" <<
                 DPL::ToUTF8String(it->name) + "] feature");
-        }
-        if (!WrtDB::FeatureDAOReadOnly::isFeatureInstalled(
-                DPL::ToUTF8String(it->name))) {
-            LogWarning("Feature not found. Checking if required :[" <<
-                       DPL::ToUTF8String(it->name) << "]");
-
-            if (it->required) {
-                /**
-                 * WL-3210 The WRT MUST inform the user if a widget cannot be
-                 * installed because one or more required features are not
-                 * supported.
-                 */
-                std::ostringstream os;
-                os << "Widget cannot be installed, required feature is missing:["
-                    << DPL::ToUTF8String(it->name) << "]";
-                if (!GlobalSettings::TestModeEnabled() && !isTizenWebApp()) {
-                    std::string label = os.str();
-                    createInstallPopup(PopupType::WIDGET_WRONG_FEATURE_INFO, label);
-                }
-                ThrowMsg(Exceptions::WidgetConfigFileInvalid, os.str());
-            }
         } else {
             newList.insert(*it);
             featureInfo += DPL::ToUTF8String(it->name);
             featureInfo += DPL::ToUTF8String(BR);
         }
     }
-    if(!data.accessInfoSet.empty()) {
+    if (!data.accessInfoSet.empty()) {
         featureInfo += WINDGET_INSTALL_NETWORK_ACCESS;
         featureInfo += DPL::ToUTF8String(BR);
     }
@@ -518,45 +564,50 @@ void TaskWidgetConfig::StepVerifyFeatures()
         "Widget Config step2 Finished");
 }
 
-void TaskWidgetConfig::setApplicationType()
+void TaskWidgetConfig::StepVerifyLivebox()
 {
     using namespace WrtDB;
-    WidgetRegisterInfo* widgetInfo = &(m_installContext.widgetConfig);
-    ConfigParserData* configInfo = &(widgetInfo->configInfo);
+    ConfigParserData &data = m_installContext.widgetConfig.configInfo;
+    ConfigParserData::LiveboxList liveBoxList = data.m_livebox;
 
-    FOREACH(iterator, configInfo->nameSpaces) {
-        LogInfo("namespace = [" << *iterator << "]");
-        AppType currentAppType = APP_TYPE_UNKNOWN;
+    if (liveBoxList.size() <= 0) {
+        return;
+    }
 
-        if (*iterator == ConfigurationNamespace::W3CWidgetNamespaceName) {
-            continue;
-        } else if (
-            *iterator ==
-            ConfigurationNamespace::WacWidgetNamespaceNameForLinkElement ||
-            *iterator ==
-            ConfigurationNamespace::WacWidgetNamespaceName)
-        {
-            currentAppType = APP_TYPE_WAC20;
-        } else if (*iterator == ConfigurationNamespace::TizenWebAppNamespaceName) {
-            currentAppType = APP_TYPE_TIZENWEBAPP;
-        }
+    FOREACH (it, liveBoxList) {
+        std::string boxType;
 
-        if (widgetInfo->webAppType == APP_TYPE_UNKNOWN) {
-            widgetInfo->webAppType = currentAppType;
-        } else if (widgetInfo->webAppType == currentAppType) {
-            continue;
+        if ((**it).m_type.empty()) {
+            boxType = web_provider_livebox_get_default_type();
         } else {
-            ThrowMsg(Exceptions::WidgetConfigFileInvalid,
-                     "Config.xml has more than one namespace");
+            boxType = DPL::ToUTF8String((**it).m_type);
         }
-    }
 
-    // If there is no define, type set to WAC 2.0
-    if (widgetInfo->webAppType == APP_TYPE_UNKNOWN) {
-        widgetInfo->webAppType = APP_TYPE_WAC20;
-    }
+        LogInfo("livebox type: " << boxType);
+
+        ConfigParserData::LiveboxInfo::BoxSizeList boxSizeList =
+            (**it).m_boxInfo.m_boxSize;
+        char** boxSize = static_cast<char**>(
+            malloc(sizeof(char*)* boxSizeList.size()));
+
+        int boxSizeCnt = 0;
+        FOREACH (m, boxSizeList) {
+            boxSize[boxSizeCnt++] = strdup(DPL::ToUTF8String((*m).m_size).c_str());
+        }
 
-    LogInfo("type = [" << widgetInfo->webAppType.getApptypeToString() << "]");
+        bool chkSize = web_provider_plugin_check_supported_size(
+            boxType.c_str(), boxSize, boxSizeCnt);
+
+        for(int i = 0; i < boxSizeCnt; i++) {
+            free(boxSize[i]);
+        }
+        free(boxSize);
+
+        if(!chkSize) {
+            LogError("Invalid boxSize");
+            ThrowMsg(Exceptions::WidgetConfigFileInvalid, "Invalid boxSize");
+        }
+    }
 }
 
 bool TaskWidgetConfig::isFeatureAllowed(WrtDB::AppType appType,
@@ -595,7 +646,9 @@ bool TaskWidgetConfig::isFeatureAllowed(WrtDB::AppType appType,
 }
 
 bool TaskWidgetConfig::parseVersionString(const std::string &version,
-        long &majorVersion, long &minorVersion, long &microVersion) const
+                                          long &majorVersion,
+                                          long &minorVersion,
+                                          long &microVersion) const
 {
     std::istringstream inputString(version);
     inputString >> majorVersion;
@@ -617,22 +670,28 @@ bool TaskWidgetConfig::parseVersionString(const std::string &version,
     return true;
 }
 
-bool TaskWidgetConfig::isMinVersionCompatible(WrtDB::AppType appType,
-        const DPL::OptionalString &widgetVersion) const
+bool TaskWidgetConfig::isMinVersionCompatible(
+    WrtDB::AppType appType,
+    const DPL::OptionalString &
+    widgetVersion) const
 {
-    if (widgetVersion.IsNull() || (*widgetVersion).empty())
-    {
-        LogWarning("minVersion attribute is empty. WRT assumes platform "
-                "supports this widget.");
-        return true;
+    if (widgetVersion.IsNull() || (*widgetVersion).empty()) {
+        if (appType == WrtDB::AppType::APP_TYPE_TIZENWEBAPP) {
+            return false;
+        } else {
+            LogWarning("minVersion attribute is empty. WRT assumes platform "
+                    "supports this widget.");
+            return true;
+        }
     }
 
     //Parse widget version
     long majorWidget = 0, minorWidget = 0, microWidget = 0;
     if (!parseVersionString(DPL::ToUTF8String(*widgetVersion), majorWidget,
-            minorWidget, microWidget)) {
+                            minorWidget, microWidget))
+    {
         LogWarning("Invalid format of widget version string.");
-        return true;
+        return false;
     }
 
     //Parse supported version
@@ -648,15 +707,16 @@ bool TaskWidgetConfig::isMinVersionCompatible(WrtDB::AppType appType,
     }
 
     if (!parseVersionString(version,
-                majorSupported, minorSupported, microSupported)) {
+                            majorSupported, minorSupported, microSupported))
+    {
         LogWarning("Invalid format of platform version string.");
         return true;
     }
 
     if (majorWidget > majorSupported ||
-            (majorWidget == majorSupported && minorWidget > minorSupported) ||
-            (majorWidget == majorSupported && minorWidget == minorSupported
-                    && microWidget > microSupported))
+        (majorWidget == majorSupported && minorWidget > minorSupported) ||
+        (majorWidget == majorSupported && minorWidget == minorSupported
+         && microWidget > microSupported))
     {
         LogInfo("Platform doesn't support this widget.");
         return false;
@@ -668,149 +728,113 @@ bool TaskWidgetConfig::isTizenWebApp() const
 {
     bool ret = FALSE;
     if (m_installContext.widgetConfig.webAppType.appType
-            == WrtDB::AppType::APP_TYPE_TIZENWEBAPP)
+        == WrtDB::AppType::APP_TYPE_TIZENWEBAPP)
+    {
         ret = TRUE;
+    }
 
     return ret;
 }
 
-bool TaskWidgetConfig::parseConfigurationFileBrowser(WrtDB::ConfigParserData& configInfo,
-                                    const std::string& _currentPath, int* pErrCode)
+bool TaskWidgetConfig::parseConfigurationFileBrowser(
+    WrtDB::ConfigParserData& configInfo,
+    const std::string& _currentPath)
 {
     ParserRunner parser;
     Try
     {
         parser.Parse(_currentPath, ElementParserPtr(new
-                                                  RootParser<
-                                                      WidgetParser>(
-                                                      configInfo,
-                                                      DPL::FromUTF32String(
-                                                          L"widget"))));
+                                                    RootParser<
+                                                        WidgetParser>(
+                                                        configInfo,
+                                                        DPL::FromUTF32String(
+                                                            L"widget"))));
     }
     Catch(ElementParser::Exception::Base)
     {
         LogError("Invalid widget configuration file!");
-        *pErrCode = WRT_WM_ERR_INVALID_ARCHIVE;
         return false;
     }
     return true;
 }
 
-bool TaskWidgetConfig::parseConfigurationFileWidget(WrtDB::ConfigParserData& configInfo,
-                                    const std::string& _currentPath, int* pErrCode)
+bool TaskWidgetConfig::parseConfigurationFileWidget(
+    WrtDB::ConfigParserData& configInfo,
+    const std::string& _currentPath)
 {
-    ParserRunner parser;
-
-    //TODO: rewrite this madness
-    std::string cfgAbsPath;
-    DIR* dir = NULL;
-    struct dirent* ptr = NULL;
-
-    dir = opendir(_currentPath.c_str());
-    if (dir == NULL) {
-        *pErrCode = WRT_ERR_UNKNOWN;
+    std::string configFilePath;
+    WrtUtilJoinPaths(configFilePath, _currentPath, WRT_WIDGET_CONFIG_FILE_NAME);
+    if (!WrtUtilFileExists(configFilePath))
+    {
+        LogError("Archive does not contain configuration file");
         return false;
     }
-    bool has_config_xml = false;
-    errno = 0;
-    while ((ptr = readdir(dir)) != NULL) { //Find configuration file, based on its name
-        if (ptr->d_type == DT_REG) {
-            if (!strcmp(ptr->d_name, WRT_WIDGET_CONFIG_FILE_NAME)) {
-                std::string dName(ptr->d_name);
-                WrtUtilJoinPaths(cfgAbsPath, _currentPath, dName);
-
-                //Parse widget configuration file
-                LogDebug("Found config: " << cfgAbsPath);
 
-                Try
-                {
-                    parser.Parse(cfgAbsPath, ElementParserPtr(new
-                                                              RootParser<
-                                                                  WidgetParser>(
-                                                                  configInfo,
-                                                                  DPL
-                                                                      ::
-                                                                      FromUTF32String(
-                                                                      L"widget"))));
-                }
-                Catch(ElementParser::Exception::Base)
-                {
-                    LogError("Invalid widget configuration file!");
-                    //                    _rethrown_exception.Dump();
-                    *pErrCode = WRT_WM_ERR_INVALID_ARCHIVE;
-                    if (-1 == TEMP_FAILURE_RETRY(closedir(dir))) {
-                        LogError("Failed to close dir: " << _currentPath << " with error: "
-                                << DPL::GetErrnoString());
-                    }
-                    return false;
-                }
+    LogDebug("Configuration file: " << configFilePath);
 
-                has_config_xml = true;
-                break;
-            }
+    Try
+    {
+        ParserRunner parser;
+#ifdef SCHEMA_VALIDATION_ENABLED
+        if(!parser.Validate(configFilePath, WRT_WIDGETS_XML_SCHEMA))
+        {
+            LogError("Invalid configuration file - schema validation failed");
+            return false;
         }
+#endif
+        parser.Parse(configFilePath,
+                     ElementParserPtr(new RootParser<WidgetParser>(
+                                          configInfo,
+                                          DPL::FromUTF32String(L"widget"))));
+        return true;
     }
-    if (-1 == TEMP_FAILURE_RETRY(closedir(dir))) {
-        LogError("Failed to close dir: " << _currentPath << " with error: "
-                << DPL::GetErrnoString());
-    }
-
-    //We must have config.xml so leaveing if we doesn't
-    if (!has_config_xml) {
-        LogError("Invalid archive");
-        *pErrCode = WRT_WM_ERR_INVALID_ARCHIVE;
+    Catch (ElementParser::Exception::Base)
+    {
+        LogError("Invalid configuration file!");
         return false;
     }
-    return true;
 }
 
 bool TaskWidgetConfig::locateAndParseConfigurationFile(
-        const std::string& _currentPath,
-        WrtDB::WidgetRegisterInfo& pWidgetConfigInfo,
-        const std::string& baseFolder,
-        int* pErrCode)
+    const std::string& _currentPath,
+    WrtDB::WidgetRegisterInfo& pWidgetConfigInfo,
+    const std::string& baseFolder)
 {
     using namespace WrtDB;
 
-    if (!pErrCode) {
-        return false;
-    }
-
     ConfigParserData& configInfo = pWidgetConfigInfo.configInfo;
 
     // check if this installation from browser, or not.
     size_t pos = _currentPath.rfind("/");
     std::ostringstream infoPath;
-    infoPath << _currentPath.substr(pos+1);
+    infoPath << _currentPath.substr(pos + 1);
 
     if (infoPath.str() != WRT_WIDGET_CONFIG_FILE_NAME) {
         if (_currentPath.empty() || baseFolder.empty()) {
-            *pErrCode = WRT_ERR_INVALID_ARG;
             return false;
         }
         // in case of general installation using wgt archive
-        if(!parseConfigurationFileWidget(configInfo, _currentPath, pErrCode))
+        if (!parseConfigurationFileWidget(configInfo, _currentPath))
         {
             return false;
         }
     } else {
         // in case of browser installation
-        if(!parseConfigurationFileBrowser(configInfo, _currentPath, pErrCode))
+        if (!parseConfigurationFileBrowser(configInfo, _currentPath))
         {
             return false;
         }
     }
 
-    if(!fillWidgetConfig(pWidgetConfigInfo, configInfo))
-    {
-        *pErrCode = WRT_WM_ERR_INVALID_ARCHIVE;
+    if (!fillWidgetConfig(pWidgetConfigInfo, configInfo)) {
         return false;
     }
     return true;
 }
 
-bool TaskWidgetConfig::fillWidgetConfig(WrtDB::WidgetRegisterInfo& pWidgetConfigInfo,
-                                        WrtDB::ConfigParserData& configInfo)
+bool TaskWidgetConfig::fillWidgetConfig(
+    WrtDB::WidgetRegisterInfo& pWidgetConfigInfo,
+    WrtDB::ConfigParserData& configInfo)
 {
     if (!!configInfo.widget_id) {
         if (!pWidgetConfigInfo.guid) {
@@ -822,14 +846,18 @@ bool TaskWidgetConfig::fillWidgetConfig(WrtDB::WidgetRegisterInfo& pWidgetConfig
             }
         }
     }
-    if (!!configInfo.tizenId) {
-        if (!pWidgetConfigInfo.pkgname) {
-            pWidgetConfigInfo.pkgname = configInfo.tizenId;
-        } else {
-            if (pWidgetConfigInfo.pkgname != configInfo.tizenId) {
-                LogError("Invalid archive - Tizen ID not same error");
-                return false;
-            }
+    if (!!configInfo.tizenAppId) {
+        if (DPL::ToUTF8String(pWidgetConfigInfo.tzAppid).compare(
+                DPL::ToUTF8String(*configInfo.tizenAppId)) < 0)
+        {
+            LogError("Invalid archive - Tizen App ID not same error");
+            return false;
+        }
+    }
+    if (!!configInfo.tizenPkgId) {
+        if (pWidgetConfigInfo.tzPkgid != *configInfo.tizenPkgId) {
+            LogError("Invalid archive - Tizen Pkg ID not same error");
+            return false;
         }
     }
     if (!!configInfo.version) {
@@ -850,17 +878,17 @@ bool TaskWidgetConfig::fillWidgetConfig(WrtDB::WidgetRegisterInfo& pWidgetConfig
     return true;
 }
 
-void TaskWidgetConfig::processFile(const std::string& path,
-        WrtDB::WidgetRegisterInfo &widgetConfiguration)
+void TaskWidgetConfig::processFile(
+    const std::string& path,
+    WrtDB::WidgetRegisterInfo &
+    widgetConfiguration)
 {
-    int pErrCode;
-
     if (!locateAndParseConfigurationFile(path, widgetConfiguration,
-                                         DEFAULT_LANGUAGE, &pErrCode)) {
+                                         DEFAULT_LANGUAGE))
+    {
         LogWarning("Widget archive: Failed while parsing config file");
         ThrowMsg(Exception::ConfigParseFailed, path);
     }
 }
-
 } //namespace WidgetInstall
 } //namespace Jobs