don't change of directory anymore
[src/app-framework-main.git] / src / wgtpkg-install.c
index 7a88ebf..ee21d8f 100644 (file)
  limitations under the License.
 */
 
-#define _BSD_SOURCE /* see readdir */
+#define _GNU_SOURCE
 
-#include <stdlib.h>
-#include <stdio.h>
-#include <dirent.h>
-#include <unistd.h>
-#include <limits.h>
 #include <errno.h>
 #include <syslog.h>
+#include <string.h>
 
+#include "verbose.h"
 #include "wgtpkg.h"
+#include "wgt.h"
+#include "wgt-info.h"
 
-/* install the widget of the file */
-static void install(const char *wgtfile)
+static int check_temporary_constraints(const struct wgt_desc *desc)
 {
-       notice("-- INSTALLING widget %s", wgtfile);
-
-       if (enter_workdir(1))
-               goto error;
-
-       if (zread(wgtfile, 0))
-               goto error;
-
-       if (check_all_signatures())
-               goto error;
+       if (!desc->icons) {
+               syslog(LOG_ERR, "widget has not icon defined (temporary constraints)");
+               errno = EINVAL;
+               return -1;
+       }
+       if (desc->icons->next) {
+               syslog(LOG_ERR, "widget has more than one icon defined (temporary constraints)");
+               errno = EINVAL;
+               return -1;
+       }
+       if (!desc->content_src) {
+               syslog(LOG_ERR, "widget has not content defined (temporary constraints)");
+               errno = EINVAL;
+               return -1;
+       }
+       if (!desc->content_type) {
+               syslog(LOG_ERR, "widget has not type for its content (temporary constraints)");
+               errno = EINVAL;
+               return -1;
+       }
+       return 0;
+}
 
-       return;
+static int check_permissions(const char *name, int required)
+{
+       if (permission_exists(name)) {
+               if (request_permission(name)) {
+                       debug("granted permission: %s", name);
+               } else if (required) {
+                       syslog(LOG_ERR, "ungranted permission required: %s", name);
+                       errno = EPERM;
+                       return 0;
+               } else {
+                       notice("ungranted permission optional: %s", name);
+               }
+       }
+       return 1;
+}
 
-error:
-       return;
-       exit(1);
+static int check_widget(const struct wgt_desc *desc)
+{
+       int result;
+       const struct wgt_desc_feature *feature;
+       const char *name;
+
+       result = check_temporary_constraints(desc);
+       feature = desc->features;
+       while(feature) {
+               name = feature->name;
+               if (0 == strcmp(name, AGLWIDGET)) {
+                       
+               } else {
+                       if (!check_permissions(feature->name, feature->required))
+                               result = -1;
+               }
+               feature = feature->next;
+       }
+       return result;
 }
 
-/* install the widgets of the list */
-int main(int ac, char **av)
+static int place(const char *root, const char *appid, const char *version, int force)
 {
-       int i, kwd;
+       char newdir[PATH_MAX];
+       int rc;
+
+       rc = snprintf(newdir, sizeof newdir, "%s/%s/%s", root, appid, version);
+       if (rc >= sizeof newdir) {
+               syslog(LOG_ERR, "path to long: %s/%s/%s", root, appid, version);
+               errno = EINVAL;
+               return -1;
+       }
 
-       openlog("wgtpkg-install", LOG_PERROR, LOG_AUTH);
+       rc = move_workdir(newdir, 1, force);
+       return rc;
+}
 
-       xmlsec_init();
+/* install the widget of the file */
+void install_widget(const char *wgtfile, const char *root, int force)
+{
+       struct wgt_info *ifo;
+       const struct wgt_desc *desc;
 
-       ac = verbose_scan_args(ac, av);
-       
-       /* canonic names for files */
-       for (i = 1 ; av[i] != NULL ; i++)
-               if ((av[i] = realpath(av[i], NULL)) == NULL) {
-                       syslog(LOG_ERR, "error while getting realpath of %dth argument", i);
-                       return 1;
-               }
+       notice("-- INSTALLING widget %s --", wgtfile);
 
        /* workdir */
-       kwd = 1;
-       if (make_workdir(kwd)) {
+       if (make_workdir_base(root, "UNPACK", 0)) {
                syslog(LOG_ERR, "failed to create a working directory");
-               return 1;
+               goto error1;
        }
-       if (!kwd)
-               atexit(remove_workdir);
 
-       /* install widgets */
-       for (av++ ; *av ; av++)
-               install(*av);
+       if (zread(wgtfile, 0))
+               goto error2;
 
-       exit(0);
-       return 0;
+       if (check_all_signatures())
+               goto error2;
+
+       ifo = wgt_info_createat(workdirfd, NULL, 1, 1, 1);
+       if (!ifo)
+               goto error2;
+
+       desc = wgt_info_desc(ifo);
+       if (check_widget(desc))
+               goto error3;
+
+/*
+       if (check_and_place())
+               goto error2;
+*/     
+       return;
+
+error3:
+       wgt_info_unref(ifo);
+
+error2:
+       remove_workdir();
+
+error1:
+       return;
 }