Ejemplo n.º 1
0
 def request_new_license(self, email):
     license = LICENSE.dump_data()
     if license is None:
         raise umcm.UMC_CommandError(_('Cannot parse License from LDAP'))
     data = {}
     data['email'] = email
     data['licence'] = license
     data = urllib.urlencode(data)
     url = 'https://license.univention.de/keyid/conversion/submit'
     request = urllib2.Request(url,
                               data=data,
                               headers={'User-agent': 'UMC/AppCenter'})
     try:
         util.urlopen(request)
     except Exception as e:
         try:
             # try to parse an html error
             body = e.read()
             detail = re.search(
                 '<span id="details">(?P<details>.*?)</span>',
                 body).group(1)
         except:
             detail = str(e)
         raise umcm.UMC_CommandError(
             _('An error occurred while sending the request: %s') % detail)
     else:
         return True
Ejemplo n.º 2
0
    def query(self, pattern):
        LICENSE.reload()
        try:
            applications = Application.all(force_reread=True)
        except (urllib2.HTTPError, urllib2.URLError) as e:
            raise umcm.UMC_CommandError(_("Could not query App Center: %s") % e)
        result = []
        self.package_manager.reopen_cache()
        for application in applications:
            if pattern.search(application.name):
                props = application.to_dict(self.package_manager)

                # delete larger entries
                for ikey in ("readmeupdate", "licenseagreement"):
                    if ikey in props:
                        del props[ikey]

                result.append(props)
        return result
Ejemplo n.º 3
0
    def query(self, pattern):
        LICENSE.reload()
        try:
            applications = Application.all(force_reread=True)
        except (urllib2.HTTPError, urllib2.URLError) as e:
            raise umcm.UMC_CommandError(
                _('Could not query App Center: %s') % e)
        result = []
        self.package_manager.reopen_cache()
        for application in applications:
            if pattern.search(application.name):
                props = application.to_dict(self.package_manager)

                # delete larger entries
                for ikey in ('readmeupdate', 'licenseagreement'):
                    if ikey in props:
                        del props[ikey]

                result.append(props)
        return result
Ejemplo n.º 4
0
 def request_new_license(self, email):
     license = LICENSE.dump_data()
     if license is None:
         raise umcm.UMC_CommandError(_("Cannot parse License from LDAP"))
     data = {}
     data["email"] = email
     data["licence"] = license
     data = urllib.urlencode(data)
     url = "https://license.univention.de/keyid/conversion/submit"
     request = urllib2.Request(url, data=data, headers={"User-agent": "UMC/AppCenter"})
     try:
         util.urlopen(request)
     except Exception as e:
         try:
             # try to parse an html error
             body = e.read()
             detail = re.search('<span id="details">(?P<details>.*?)</span>', body).group(1)
         except:
             detail = str(e)
         raise umcm.UMC_CommandError(_("An error occurred while sending the request: %s") % detail)
     else:
         return True
Ejemplo n.º 5
0
 def get(self, application):
     LICENSE.reload()
     application = Application.find(application)
     self.package_manager.reopen_cache()
     return application.to_dict(self.package_manager)
Ejemplo n.º 6
0
 def get(self, application):
     LICENSE.reload()
     application = Application.find(application)
     self.package_manager.reopen_cache()
     return application.to_dict(self.package_manager)