home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- from distutils.errors import *
- from distutils.core import Command
- from distutils.spawn import spawn
- from distutils import log
-
- try:
- from hashlib import md5
- except ImportError:
- from md5 import md5
-
- import os
- import socket
- import platform
- import ConfigParser
- import httplib
- import base64
- import urlparse
- import cStringIO as StringIO
-
- class upload(Command):
- description = 'upload binary package to PyPI'
- DEFAULT_REPOSITORY = 'http://pypi.python.org/pypi'
- user_options = [
- ('repository=', 'r', 'url of repository [default: %s]' % DEFAULT_REPOSITORY),
- ('show-response', None, 'display full response text from server'),
- ('sign', 's', 'sign files to upload using gpg'),
- ('identity=', 'i', 'GPG identity used to sign files')]
- boolean_options = [
- 'show-response',
- 'sign']
-
- def initialize_options(self):
- self.username = ''
- self.password = ''
- self.repository = ''
- self.show_response = 0
- self.sign = False
- self.identity = None
-
-
- def finalize_options(self):
- if self.identity and not (self.sign):
- raise DistutilsOptionError('Must use --sign for --identity to have meaning')
- not (self.sign)
- if os.environ.has_key('HOME'):
- rc = os.path.join(os.environ['HOME'], '.pypirc')
- if os.path.exists(rc):
- self.announce('Using PyPI login from %s' % rc)
- config = ConfigParser.ConfigParser({
- 'username': '',
- 'password': '',
- 'repository': '' })
- config.read(rc)
- if not self.repository:
- self.repository = config.get('server-login', 'repository')
-
- if not self.username:
- self.username = config.get('server-login', 'username')
-
- if not self.password:
- self.password = config.get('server-login', 'password')
-
-
-
- if not self.repository:
- self.repository = self.DEFAULT_REPOSITORY
-
-
-
- def run(self):
- if not self.distribution.dist_files:
- raise DistutilsOptionError('No dist file created in earlier command')
- self.distribution.dist_files
- for command, pyversion, filename in self.distribution.dist_files:
- self.upload_file(command, pyversion, filename)
-
-
-
- def upload_file(self, command, pyversion, filename):
- if self.sign:
- gpg_args = [
- 'gpg',
- '--detach-sign',
- '-a',
- filename]
- if self.identity:
- gpg_args[2:2] = [
- '--local-user',
- self.identity]
-
- spawn(gpg_args, dry_run = self.dry_run)
-
- content = open(filename, 'rb').read()
- basename = os.path.basename(filename)
- comment = ''
- if command == 'bdist_egg' and self.distribution.has_ext_modules():
- comment = 'built on %s' % platform.platform(terse = 1)
-
- data = {
- ':action': 'file_upload',
- 'protcol_version': '1',
- 'name': self.distribution.get_name(),
- 'version': self.distribution.get_version(),
- 'content': (basename, content),
- 'filetype': command,
- 'pyversion': pyversion,
- 'md5_digest': md5(content).hexdigest() }
- if command == 'bdist_rpm':
- (dist, version, id) = platform.dist()
- if dist:
- comment = 'built for %s %s' % (dist, version)
-
- elif command == 'bdist_dumb':
- comment = 'built for %s' % platform.platform(terse = 1)
-
- data['comment'] = comment
- if self.sign:
- data['gpg_signature'] = (os.path.basename(filename) + '.asc', open(filename + '.asc').read())
-
- auth = 'Basic ' + base64.encodestring(self.username + ':' + self.password).strip()
- boundary = '--------------GHSKFJDLGDS7543FJKLFHRE75642756743254'
- sep_boundary = '\n--' + boundary
- end_boundary = sep_boundary + '--'
- body = StringIO.StringIO()
- for key, value in data.items():
- if type(value) != type([]):
- value = [
- value]
-
- for value in value:
- if type(value) is tuple:
- fn = ';filename="%s"' % value[0]
- value = value[1]
- else:
- fn = ''
- value = str(value)
- body.write(sep_boundary)
- body.write('\nContent-Disposition: form-data; name="%s"' % key)
- body.write(fn)
- body.write('\n\n')
- body.write(value)
- if value and value[-1] == '\r':
- body.write('\n')
- continue
-
-
- body.write(end_boundary)
- body.write('\n')
- body = body.getvalue()
- self.announce('Submitting %s to %s' % (filename, self.repository), log.INFO)
- (schema, netloc, url, params, query, fragments) = urlparse.urlparse(self.repository)
- if schema == 'http':
- http = httplib.HTTPConnection(netloc)
- elif schema == 'https':
- http = httplib.HTTPSConnection(netloc)
- else:
- raise AssertionError, 'unsupported schema ' + schema
- data = schema == 'http'
- loglevel = log.INFO
-
- try:
- http.connect()
- http.putrequest('POST', url)
- http.putheader('Content-type', 'multipart/form-data; boundary=%s' % boundary)
- http.putheader('Content-length', str(len(body)))
- http.putheader('Authorization', auth)
- http.endheaders()
- http.send(body)
- except socket.error:
- e = None
- self.announce(str(e), log.ERROR)
- return None
-
- r = http.getresponse()
- if r.status == 200:
- self.announce('Server response (%s): %s' % (r.status, r.reason), log.INFO)
- else:
- self.announce('Upload failed (%s): %s' % (r.status, r.reason), log.ERROR)
- if self.show_response:
- print '-' * 75, r.read(), '-' * 75
-
-
-
-