Exemplo n.º 1
0
 def _connect(self):
     '''If self.root is present, return. Otherwise, if the url scheme is not
     "file:" then try to mount the share url.'''
     if not os.path.exists(self.root) and self.url_scheme != 'file':
         print u'Attempting to mount fileshare %s:' % self.baseurl
         if NETFSMOUNTURLSYNC_AVAILABLE:
             try:
                 self.root = mount_share_url(self.baseurl)
             except ShareMountException, err:
                 raise RepoError(err)
             else:
                 self.we_mounted_repo = True
         else:
             try:
                 os.mkdir(self.root)
             except (OSError, IOError), err:
                 raise RepoError(u'Could not make repo mountpoint: %s' %
                                 unicode(err))
             if self.baseurl.startswith('afp:'):
                 cmd = ['/sbin/mount_afp', '-i', self.baseurl, self.root]
             elif self.baseurl.startswith('smb:'):
                 cmd = ['/sbin/mount_smbfs', self.baseurl[4:], self.root]
             elif self.baseurl.startswith('nfs://'):
                 cmd = ['/sbin/mount_nfs', self.baseurl[6:], self.root]
             else:
                 print >> sys.stderr, 'Unsupported filesystem URL!'
                 return
             retcode = subprocess.call(cmd)
             if retcode:
                 os.rmdir(self.root)
             else:
                 self.we_mounted_repo = True
Exemplo n.º 2
0
 def itemlist(self, kind):
     '''Returns a list of identifiers for each item of kind.
     Kind might be 'catalogs', 'manifests', 'pkgsinfo', 'pkgs', or 'icons'.
     For a file-backed repo this would be a list of pathnames.'''
     url = urllib2.quote(kind.encode('UTF-8')) + '?api_fields=filename'
     headers = {'Accept': 'application/xml'}
     try:
         data = self._curl(url, headers=headers)
     except CurlError, err:
         raise RepoError(err)
Exemplo n.º 3
0
 def delete(self, resource_identifier):
     '''Deletes a repo object located by resource_identifier.
     For a file-backed repo, a resource_identifier of
     'pkgsinfo/apps/Firefox-52.0.plist' would result in the deletion of
     <repo_root>/pkgsinfo/apps/Firefox-52.0.plist.'''
     url = quote(resource_identifier.encode('UTF-8'))
     try:
         self._curl(url, method='DELETE')
     except CurlError as err:
         raise RepoError(err)
Exemplo n.º 4
0
 def delete(self, resource_identifier):
     '''Deletes a repo object located by resource_identifier.
     For a file-backed repo, a resource_identifier of
     'pkgsinfo/apps/Firefox-52.0.plist' would result in the deletion of
     <repo_root>/pkgsinfo/apps/Firefox-52.0.plist.'''
     resource_identifier = unicodeize(resource_identifier)
     repo_filepath = os.path.join(self.root, resource_identifier)
     try:
         os.remove(repo_filepath)
     except (OSError, IOError), err:
         raise RepoError(err)
Exemplo n.º 5
0
    def itemlist(self, kind):
        '''Returns a list of identifiers for each item of kind.
        Kind might be 'catalogs', 'manifests', 'pkgsinfo', 'pkgs', or 'icons'.
        For a file-backed repo this would be a list of pathnames.'''
        url = quote(kind.encode('UTF-8')) + '?api_fields=filename'
        headers = {'Accept': 'application/xml'}
        try:
            data = self._curl(url, headers=headers)
        except CurlError as err:
            raise RepoError(err)
        try:
            plist = readPlistFromString(data)
        except PlistReadError as err:
            raise RepoError(err)
        if kind in ['catalogs', 'manifests', 'pkgsinfo']:
            # it's a list of dicts containing 'filename' key/values
            return [item['filename'] for item in plist]

        # it's a list of filenames (pkgs, icons)
        return plist
Exemplo n.º 6
0
    def put_from_local_file(self, resource_identifier, local_file_path):
        '''Copies the content of local_file_path to the repo based on
        resource_identifier. For a file-backed repo, a resource_identifier
        of 'pkgsinfo/apps/Firefox-52.0.plist' would result in the content
        being saved to <repo_root>/pkgsinfo/apps/Firefox-52.0.plist.'''
        url = quote(resource_identifier.encode('UTF-8'))

        if resource_identifier.startswith(('pkgs/', 'icons/')):
            # MWA2API only supports POST for pkgs and icons
            # and file uploads need to be form encoded
            formdata = ['filedata=@%s' % local_file_path]
            try:
                self._curl(url, method='POST', formdata=formdata)
            except CurlError as err:
                raise RepoError(err)
        else:
            headers = {'Content-type': 'application/xml'}
            try:
                self._curl(url, headers=headers, method='PUT',
                           filename=local_file_path)
            except CurlError as err:
                raise RepoError(err)
Exemplo n.º 7
0
 def get_to_local_file(self, resource_identifier, local_file_path):
     '''Gets the contents of item with given resource_identifier and saves
     it to local_file_path.
     For a file-backed repo, a resource_identifier
     of 'pkgsinfo/apps/Firefox-52.0.plist' would copy the contents of
     <repo_root>/pkgsinfo/apps/Firefox-52.0.plist to a local file given by
     local_file_path.'''
     resource_identifier = unicodeize(resource_identifier)
     repo_filepath = os.path.join(self.root, resource_identifier)
     local_file_path = unicodeize(local_file_path)
     try:
         shutil.copyfile(repo_filepath, local_file_path)
     except (OSError, IOError), err:
         raise RepoError(err)
Exemplo n.º 8
0
 def put(self, resource_identifier, content):
     '''Stores content on the repo based on resource_identifier.
     For a file-backed repo, a resource_identifier of
     'pkgsinfo/apps/Firefox-52.0.plist' would result in the content being
     saved to <repo_root>/pkgsinfo/apps/Firefox-52.0.plist.'''
     url = quote(resource_identifier.encode('UTF-8'))
     if resource_identifier.startswith(
         ('catalogs/', 'manifests/', 'pkgsinfo/')):
         headers = {'Content-type': 'application/xml'}
     else:
         headers = {}
     try:
         self._curl(url, headers=headers, method='PUT', content=content)
     except CurlError as err:
         raise RepoError(err)
Exemplo n.º 9
0
 def put(self, resource_identifier, content):
     '''Stores content on the repo based on resource_identifier.
     For a file-backed repo, a resource_identifier of
     'pkgsinfo/apps/Firefox-52.0.plist' would result in the content being
     saved to <repo_root>/pkgsinfo/apps/Firefox-52.0.plist.'''
     resource_identifier = unicodeize(resource_identifier)
     repo_filepath = os.path.join(self.root, resource_identifier)
     dir_path = os.path.dirname(repo_filepath)
     if not os.path.exists(dir_path):
         os.makedirs(dir_path, 0755)
     try:
         fileref = open(repo_filepath, 'w')
         fileref.write(content)
         fileref.close()
     except (OSError, IOError), err:
         raise RepoError(err)
Exemplo n.º 10
0
 def get(self, resource_identifier):
     '''Returns the content of item with given resource_identifier.
     For a file-backed repo, a resource_identifier of
     'pkgsinfo/apps/Firefox-52.0.plist' would return the contents of
     <repo_root>/pkgsinfo/apps/Firefox-52.0.plist.
     Avoid using this method with the 'pkgs' kind as it might return a
     really large blob of data.'''
     resource_identifier = unicodeize(resource_identifier)
     repo_filepath = os.path.join(self.root, resource_identifier)
     try:
         fileref = open(repo_filepath)
         data = fileref.read()
         fileref.close()
         return data
     except (OSError, IOError), err:
         raise RepoError(err)
Exemplo n.º 11
0
 def get_to_local_file(self, resource_identifier, local_file_path):
     '''Gets the contents of item with given resource_identifier and saves
     it to local_file_path.
     For a file-backed repo, a resource_identifier
     of 'pkgsinfo/apps/Firefox-52.0.plist' would copy the contents of
     <repo_root>/pkgsinfo/apps/Firefox-52.0.plist to a local file given by
     local_file_path.'''
     url = quote(resource_identifier.encode('UTF-8'))
     if resource_identifier.startswith(
         ('catalogs/', 'manifests/', 'pkgsinfo/')):
         headers = {'Accept': 'application/xml'}
     else:
         headers = {}
     try:
         self._curl(url, headers=headers, filename=local_file_path)
     except CurlError as err:
         raise RepoError(err)
Exemplo n.º 12
0
 def get(self, resource_identifier):
     '''Returns the content of item with given resource_identifier.
     For a file-backed repo, a resource_identifier of
     'pkgsinfo/apps/Firefox-52.0.plist' would return the contents of
     <repo_root>/pkgsinfo/apps/Firefox-52.0.plist.
     Avoid using this method with the 'pkgs' kind as it might return a
     really large blob of data.'''
     url = quote(resource_identifier.encode('UTF-8'))
     if resource_identifier.startswith(
         ('catalogs/', 'manifests/', 'pkgsinfo/')):
         headers = {'Accept': 'application/xml'}
     else:
         headers = {}
     try:
         return self._curl(url, headers=headers)
     except CurlError as err:
         raise RepoError(err)
Exemplo n.º 13
0
 def put_from_local_file(self, resource_identifier, local_file_path):
     '''Copies the content of local_file_path to the repo based on
     resource_identifier. For a file-backed repo, a resource_identifier
     of 'pkgsinfo/apps/Firefox-52.0.plist' would result in the content
     being saved to <repo_root>/pkgsinfo/apps/Firefox-52.0.plist.'''
     resource_identifier = unicodeize(resource_identifier)
     repo_filepath = os.path.join(self.root, resource_identifier)
     local_file_path = unicodeize(local_file_path)
     if local_file_path == repo_filepath:
         # nothing to do!
         return
     dir_path = os.path.dirname(repo_filepath)
     if not os.path.exists(dir_path):
         os.makedirs(dir_path, 0755)
     try:
         shutil.copyfile(local_file_path, repo_filepath)
     except (OSError, IOError), err:
         raise RepoError(err)
Exemplo n.º 14
0
 def itemlist(self, kind):
     '''Returns a list of identifiers for each item of kind.
     Kind might be 'catalogs', 'manifests', 'pkgsinfo', 'pkgs', or 'icons'.
     For a file-backed repo this would be a list of pathnames.'''
     kind = unicodeize(kind)
     search_dir = os.path.join(self.root, kind)
     file_list = []
     try:
         for (dirpath, dirnames, filenames) in os.walk(search_dir):
             # don't recurse into directories that start with a period.
             dirnames[:] = [name
                            for name in dirnames if not name.startswith('.')]
             for name in filenames:
                 if name.startswith('.'):
                     # skip files that start with a period as well
                     continue
                 abs_path = os.path.join(dirpath, name)
                 rel_path = abs_path[len(search_dir):].lstrip("/")
                 file_list.append(rel_path)
         return file_list
     except (OSError, IOError), err:
         raise RepoError(err)
Exemplo n.º 15
0
        url = urllib2.quote(resource_identifier.encode('UTF-8'))

        if resource_identifier.startswith(('pkgs/', 'icons/')):
            # MWA2API only supports POST for pkgs and icons
            # and file uploads need to be form encoded
            formdata = ['filedata=@%s' % local_file_path]
            try:
                self._curl(url, method='POST', formdata=formdata)
            except CurlError, err:
                raise RepoError(err)
        else:
            headers = {'Content-type': 'application/xml'}
            try:
                self._curl(url,
                           headers=headers,
                           method='PUT',
                           filename=local_file_path)
            except CurlError, err:
                raise RepoError(err)

    def delete(self, resource_identifier):
        '''Deletes a repo object located by resource_identifier.
        For a file-backed repo, a resource_identifier of
        'pkgsinfo/apps/Firefox-52.0.plist' would result in the deletion of
        <repo_root>/pkgsinfo/apps/Firefox-52.0.plist.'''
        url = urllib2.quote(resource_identifier.encode('UTF-8'))
        try:
            self._curl(url, method='DELETE')
        except CurlError, err:
            raise RepoError(err)
Exemplo n.º 16
0
class MWA2APIRepo(Repo):
    def __init__(self, baseurl):
        '''Constructor'''
        self.baseurl = baseurl
        self.authtoken = None
        self._connect()

    def _connect(self):
        '''For a fileshare repo, we'd mount the share, prompting for
        credentials if needed. For the API repo, well look for a stored
        authtoken; if we don't find one, we'll prompt for credentials
        and make an authtoken.'''
        if not self.authtoken:
            if 'MUNKIREPO_AUTHTOKEN' in os.environ:
                self.authtoken = os.environ['MUNKIREPO_AUTHTOKEN']
            else:
                print 'Please provide credentials for %s:' % self.baseurl
                username = raw_input('Username: '******'******' % (username, password)
                self.authtoken = 'Basic %s' % base64.b64encode(user_and_pass)

    def _curl(self,
              relative_url,
              headers=None,
              method='GET',
              filename=None,
              content=None,
              formdata=None):
        '''Use curl to talk to MWA2 API'''
        # we use a config/directive file to avoid having the auth header show
        # up in a process listing
        contentpath = None
        fileref, directivepath = tempfile.mkstemp()
        fileobj = os.fdopen(fileref, 'w')
        print >> fileobj, 'silent'  # no progress meter
        print >> fileobj, 'show-error'  # print error msg to stderr
        print >> fileobj, 'fail'  # throw error if download fails
        print >> fileobj, 'location'  # follow redirects
        print >> fileobj, 'request = %s' % method
        if headers:
            for key in headers:
                print >> fileobj, 'header = "%s: %s"' % (key, headers[key])
        print >> fileobj, 'header = "Authorization: %s"' % self.authtoken

        if formdata:
            for line in formdata:
                print >> fileobj, 'form = "%s"' % line

        url = os.path.join(self.baseurl, relative_url)

        print >> fileobj, 'url = "%s"' % url
        fileobj.close()

        cmd = [CURL_CMD, '-q', '--config', directivepath]
        if filename and method == 'GET':
            cmd.extend(['-o', filename])
        if filename and method in ('PUT', 'POST'):
            cmd.extend(['-d', '@%s' % filename])
        elif content and method in ('PUT', 'POST'):
            if len(content) > 1024:
                # it's a lot of data; let's write it to a local file first
                # because we can't really pass it all via subprocess
                fileref, contentpath = tempfile.mkstemp()
                fileobj = os.fdopen(fileref, 'w')
                fileobj.write(content)
                fileobj.close()
                cmd.extend(['-d', '@%s' % contentpath])
            else:
                cmd.extend(['-d', content])

        proc = subprocess.Popen(cmd,
                                shell=False,
                                bufsize=-1,
                                stdin=subprocess.PIPE,
                                stdout=subprocess.PIPE,
                                stderr=subprocess.PIPE)
        output, err = proc.communicate()

        if DEBUG:
            # save our curl_directives for debugging
            fileref = open(directivepath)
            curl_directives = fileref.read()
            fileref.close()
        try:
            os.unlink(directivepath)
            if contentpath:
                os.unlink(contentpath)
        except OSError:
            pass
        if proc.returncode:
            if DEBUG:
                raise CurlError((proc.returncode, err, curl_directives, cmd))
            else:
                raise CurlError((proc.returncode, err))
        return output

    def itemlist(self, kind):
        '''Returns a list of identifiers for each item of kind.
        Kind might be 'catalogs', 'manifests', 'pkgsinfo', 'pkgs', or 'icons'.
        For a file-backed repo this would be a list of pathnames.'''
        url = urllib2.quote(kind.encode('UTF-8')) + '?api_fields=filename'
        headers = {'Accept': 'application/xml'}
        try:
            data = self._curl(url, headers=headers)
        except CurlError, err:
            raise RepoError(err)
        try:
            plist = plistlib.readPlistFromString(data)
        except ExpatError, err:
            raise RepoError(err)
Exemplo n.º 17
0
                    cmd = ['/sbin/mount_afp', '-i', self.baseurl, self.root]
                elif self.baseurl.startswith('smb:'):
                    cmd = ['/sbin/mount_smbfs', self.baseurl[4:], self.root]
                elif self.baseurl.startswith('nfs://'):
                    cmd = ['/sbin/mount_nfs', self.baseurl[6:], self.root]
                else:
                    print >> sys.stderr, 'Unsupported filesystem URL!'
                    return
                retcode = subprocess.call(cmd)
                if retcode:
                    os.rmdir(self.root)
                else:
                    self.we_mounted_repo = True
        # mount attempt complete; check again for existence of self.root
        if not os.path.exists(self.root):
            raise RepoError(u'%s does not exist' % self.root)

    def itemlist(self, kind):
        '''Returns a list of identifiers for each item of kind.
        Kind might be 'catalogs', 'manifests', 'pkgsinfo', 'pkgs', or 'icons'.
        For a file-backed repo this would be a list of pathnames.'''
        kind = unicodeize(kind)
        search_dir = os.path.join(self.root, kind)
        file_list = []
        try:
            for (dirpath, dirnames, filenames) in os.walk(search_dir,
                                                          followlinks=True):
                # don't recurse into directories that start with a period.
                dirnames[:] = [
                    name for name in dirnames if not name.startswith('.')
                ]