Revert "Revert "Implement coping TEP in wgt and hybrid backend""
[platform/core/appfw/wgt-backend.git] / src / wgt / wgt_installer.cc
1 // Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
2 // Use of this source code is governed by an apache-2.0 license that can be
3 // found in the LICENSE file.
4
5 #include "wgt/wgt_installer.h"
6
7 #include <common/pkgmgr_interface.h>
8
9 #include <common/step/backup/step_backup_icons.h>
10 #include <common/step/backup/step_backup_manifest.h>
11 #include <common/step/backup/step_copy_backup.h>
12 #include <common/step/configuration/step_configure.h>
13 #include <common/step/configuration/step_fail.h>
14 #include <common/step/configuration/step_parse_manifest.h>
15 #include <common/step/filesystem/step_clear_data.h>
16 #include <common/step/filesystem/step_copy.h>
17 #include <common/step/filesystem/step_copy_storage_directories.h>
18 #include <common/step/filesystem/step_copy_tep.h>
19 #include <common/step/filesystem/step_create_icons.h>
20 #include <common/step/filesystem/step_create_per_user_storage_directories.h>
21 #include <common/step/filesystem/step_create_storage_directories.h>
22 #include <common/step/filesystem/step_delta_patch.h>
23 #include <common/step/filesystem/step_recover_files.h>
24 #include <common/step/filesystem/step_recover_icons.h>
25 #include <common/step/filesystem/step_recover_manifest.h>
26 #include <common/step/filesystem/step_recover_storage_directories.h>
27 #include <common/step/filesystem/step_remove_files.h>
28 #include <common/step/filesystem/step_remove_icons.h>
29 #include <common/step/filesystem/step_remove_per_user_storage_directories.h>
30 #include <common/step/filesystem/step_remove_temporary_directory.h>
31 #include <common/step/filesystem/step_unzip.h>
32 #include <common/step/pkgmgr/step_check_blacklist.h>
33 #include <common/step/pkgmgr/step_check_removable.h>
34 #include <common/step/pkgmgr/step_kill_apps.h>
35 #include <common/step/pkgmgr/step_recover_application.h>
36 #include <common/step/pkgmgr/step_register_app.h>
37 #include <common/step/pkgmgr/step_remove_manifest.h>
38 #include <common/step/pkgmgr/step_run_parser_plugins.h>
39 #include <common/step/pkgmgr/step_unregister_app.h>
40 #include <common/step/pkgmgr/step_update_app.h>
41 #include <common/step/pkgmgr/step_update_tep.h>
42 #include <common/step/recovery/step_open_recovery_file.h>
43 #include <common/step/security/step_check_old_certificate.h>
44 #include <common/step/security/step_check_signature.h>
45 #include <common/step/security/step_privilege_compatibility.h>
46 #include <common/step/security/step_recover_security.h>
47 #include <common/step/security/step_register_security.h>
48 #include <common/step/security/step_revoke_security.h>
49 #include <common/step/security/step_rollback_deinstallation_security.h>
50 #include <common/step/security/step_rollback_installation_security.h>
51 #include <common/step/security/step_update_security.h>
52
53 #include <wgt_manifest_handlers/widget_config_parser.h>
54
55 #include "wgt/step/configuration/step_parse.h"
56 #include "wgt/step/configuration/step_parse_recovery.h"
57 #include "wgt/step/encryption/step_encrypt_resources.h"
58 #include "wgt/step/encryption/step_remove_encryption_data.h"
59 #include "wgt/step/filesystem/step_create_symbolic_link.h"
60 #include "wgt/step/filesystem/step_wgt_patch_icons.h"
61 #include "wgt/step/filesystem/step_wgt_patch_storage_directories.h"
62 #include "wgt/step/filesystem/step_wgt_resource_directory.h"
63 #include "wgt/step/pkgmgr/step_generate_xml.h"
64 #include "wgt/step/rds/step_rds_modify.h"
65 #include "wgt/step/rds/step_rds_parse.h"
66 #include "wgt/step/security/step_add_default_privileges.h"
67 #include "wgt/step/security/step_check_settings_level.h"
68 #include "wgt/step/security/step_check_wgt_background_category.h"
69
70 namespace ci = common_installer;
71
72 namespace wgt {
73
74 WgtInstaller::WgtInstaller(ci::PkgMgrPtr pkgrmgr)
75     : AppInstaller("wgt", pkgrmgr) {
76   context_->backend_data.set(new WgtBackendData());
77
78   /* treat the request */
79   switch (pkgmgr_->GetRequestType()) {
80     case ci::RequestType::Install : {
81       AddStep<ci::configuration::StepConfigure>(pkgmgr_);
82       AddStep<ci::filesystem::StepUnzip>();
83       AddStep<wgt::configuration::StepParse>(true);
84       AddStep<ci::pkgmgr::StepCheckBlacklist>();
85       AddStep<ci::security::StepCheckSignature>();
86       AddStep<ci::security::StepPrivilegeCompatibility>();
87       AddStep<wgt::security::StepCheckSettingsLevel>();
88       AddStep<wgt::security::StepCheckWgtBackgroundCategory>();
89       AddStep<wgt::encryption::StepEncryptResources>();
90       AddStep<wgt::filesystem::StepWgtResourceDirectory>();
91       AddStep<ci::security::StepRollbackInstallationSecurity>();
92       AddStep<ci::filesystem::StepCopy>();
93       AddStep<ci::filesystem::StepCopyTep>();
94       AddStep<wgt::filesystem::StepWgtPatchStorageDirectories>();
95       AddStep<ci::filesystem::StepCreateStorageDirectories>();
96       AddStep<wgt::filesystem::StepCreateSymbolicLink>();
97       AddStep<wgt::filesystem::StepWgtPatchIcons>();
98       AddStep<ci::filesystem::StepCreateIcons>();
99       AddStep<wgt::pkgmgr::StepGenerateXml>();
100       AddStep<ci::pkgmgr::StepRegisterApplication>();
101       AddStep<ci::pkgmgr::StepRunParserPlugin>(
102           ci::Plugin::ActionType::Install);
103       AddStep<ci::filesystem::StepCreatePerUserStorageDirectories>();
104       AddStep<ci::security::StepRegisterSecurity>();
105       break;
106     }
107     case ci::RequestType::Update: {
108       AddStep<ci::configuration::StepConfigure>(pkgmgr_);
109       AddStep<ci::filesystem::StepUnzip>();
110       AddStep<wgt::configuration::StepParse>(true);
111       AddStep<ci::pkgmgr::StepCheckBlacklist>();
112       AddStep<ci::security::StepCheckSignature>();
113       AddStep<ci::security::StepPrivilegeCompatibility>();
114       AddStep<wgt::security::StepCheckSettingsLevel>();
115       AddStep<wgt::security::StepCheckWgtBackgroundCategory>();
116       AddStep<ci::security::StepCheckOldCertificate>();
117       AddStep<wgt::filesystem::StepWgtResourceDirectory>();
118       AddStep<ci::configuration::StepParseManifest>(
119           ci::configuration::StepParseManifest::ManifestLocation::INSTALLED,
120           ci::configuration::StepParseManifest::StoreLocation::BACKUP);
121       AddStep<ci::pkgmgr::StepKillApps>();
122       AddStep<ci::backup::StepBackupManifest>();
123       AddStep<ci::backup::StepBackupIcons>();
124       AddStep<ci::backup::StepCopyBackup>();
125       AddStep<ci::filesystem::StepCopyTep>();
126       AddStep<wgt::filesystem::StepWgtPatchStorageDirectories>();
127       AddStep<wgt::filesystem::StepCreateSymbolicLink>();
128       AddStep<wgt::filesystem::StepWgtPatchIcons>();
129       AddStep<ci::filesystem::StepCreateIcons>();
130       AddStep<ci::filesystem::StepCopyStorageDirectories>();
131       AddStep<ci::security::StepUpdateSecurity>();
132       AddStep<wgt::pkgmgr::StepGenerateXml>();
133       AddStep<ci::pkgmgr::StepRunParserPlugin>(
134           ci::Plugin::ActionType::Upgrade);
135       AddStep<ci::pkgmgr::StepUpdateApplication>();
136       // TODO(t.iwanek): this step is supposed to be removed as it is quickfix
137       AddStep<ci::pkgmgr::StepUpdateTep>();
138       break;
139     }
140     case ci::RequestType::Uninstall: {
141       AddStep<ci::configuration::StepConfigure>(pkgmgr_);
142       AddStep<ci::pkgmgr::StepCheckRemovable>();
143       AddStep<ci::configuration::StepParseManifest>(
144           ci::configuration::StepParseManifest::ManifestLocation::INSTALLED,
145           ci::configuration::StepParseManifest::StoreLocation::NORMAL);
146       AddStep<ci::pkgmgr::StepKillApps>();
147       AddStep<ci::pkgmgr::StepRunParserPlugin>(
148           ci::Plugin::ActionType::Uninstall);
149       AddStep<ci::filesystem::StepRemovePerUserStorageDirectories>();
150       AddStep<ci::pkgmgr::StepUnregisterApplication>();
151       AddStep<ci::security::StepRollbackDeinstallationSecurity>();
152       AddStep<ci::filesystem::StepRemoveFiles>();
153       AddStep<ci::filesystem::StepRemoveIcons>();
154       AddStep<wgt::encryption::StepRemoveEncryptionData>();
155       AddStep<ci::security::StepRevokeSecurity>();
156       AddStep<ci::pkgmgr::StepRemoveManifest>();
157       break;
158     }
159     case ci::RequestType::Reinstall: {
160       AddStep<ci::configuration::StepConfigure>(pkgmgr_);
161       AddStep<wgt::configuration::StepParse>(false);
162       AddStep<ci::pkgmgr::StepKillApps>();
163       AddStep<ci::configuration::StepParseManifest>(
164           ci::configuration::StepParseManifest::ManifestLocation::INSTALLED,
165           ci::configuration::StepParseManifest::StoreLocation::BACKUP);
166       AddStep<ci::pkgmgr::StepCheckBlacklist>();
167       AddStep<wgt::rds::StepRDSParse>();
168       AddStep<wgt::rds::StepRDSModify>();
169       AddStep<ci::security::StepUpdateSecurity>();
170       break;
171     }
172     case ci::RequestType::Delta: {
173       AddStep<ci::configuration::StepConfigure>(pkgmgr_);
174       AddStep<ci::filesystem::StepUnzip>();
175       // TODO(t.iwanek): manifest is parsed twice...
176       AddStep<wgt::configuration::StepParse>(false);
177       // start file may not have changed
178       AddStep<ci::filesystem::StepDeltaPatch>("res/wgt/");
179       AddStep<wgt::configuration::StepParse>(true);
180       AddStep<ci::pkgmgr::StepCheckBlacklist>();
181       AddStep<ci::security::StepCheckSignature>();
182       AddStep<ci::security::StepPrivilegeCompatibility>();
183       AddStep<wgt::security::StepCheckSettingsLevel>();
184       AddStep<wgt::security::StepCheckWgtBackgroundCategory>();
185       AddStep<ci::security::StepCheckOldCertificate>();
186       AddStep<wgt::filesystem::StepWgtResourceDirectory>();
187       AddStep<ci::configuration::StepParseManifest>(
188           ci::configuration::StepParseManifest::ManifestLocation::INSTALLED,
189           ci::configuration::StepParseManifest::StoreLocation::BACKUP);
190       AddStep<ci::pkgmgr::StepKillApps>();
191       AddStep<ci::backup::StepBackupManifest>();
192       AddStep<ci::backup::StepBackupIcons>();
193       AddStep<ci::backup::StepCopyBackup>();
194       AddStep<wgt::filesystem::StepWgtPatchStorageDirectories>();
195       AddStep<wgt::filesystem::StepCreateSymbolicLink>();
196       AddStep<wgt::filesystem::StepWgtPatchIcons>();
197       AddStep<ci::filesystem::StepCreateIcons>();
198       AddStep<ci::filesystem::StepCopyStorageDirectories>();
199       AddStep<ci::security::StepUpdateSecurity>();
200       AddStep<wgt::pkgmgr::StepGenerateXml>();
201       AddStep<ci::pkgmgr::StepRunParserPlugin>(
202           ci::Plugin::ActionType::Upgrade);
203       AddStep<ci::pkgmgr::StepUpdateApplication>();
204       break;
205     }
206     case ci::RequestType::Recovery: {
207       AddStep<ci::configuration::StepConfigure>(pkgmgr_);
208       AddStep<ci::recovery::StepOpenRecoveryFile>();
209       AddStep<wgt::configuration::StepParseRecovery>();
210       AddStep<ci::pkgmgr::StepRecoverApplication>();
211       AddStep<ci::filesystem::StepRemoveTemporaryDirectory>();
212       AddStep<ci::filesystem::StepRecoverIcons>();
213       AddStep<ci::filesystem::StepRecoverManifest>();
214       AddStep<ci::filesystem::StepRecoverStorageDirectories>();
215       AddStep<ci::filesystem::StepRecoverFiles>();
216       AddStep<ci::security::StepRecoverSecurity>();
217       break;
218     }
219     case ci::RequestType::Clear: {
220       AddStep<ci::configuration::StepConfigure>(pkgmgr_);
221       AddStep<ci::filesystem::StepClearData>();
222       break;
223     }
224     default: {
225       AddStep<ci::configuration::StepFail>();
226     }
227   }
228 }
229
230 }  // namespace wgt