Server IP : 127.0.0.2 / Your IP : 13.59.90.172 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/bin/ |
Upload File : |
#! /usr/bin/python # # Copyright (C) 2010 Canonical Ltd """lp-attach Attach a file to a Launchpad bug usage: lp_attach BUGNUMBER Attaches a file (read from stdin) as an attachment on a named Launchpad bug. """ # TODO: option to set the attachment name, and to set whether it's a patch # # TODO: option to open the bug after attaching # # TODO: option to add a comment as well as the attachment # # TODO: option to set the subject of the comment # # TODO: option to comment on a merge proposal or question rather than a bug # # TODO: option to add a comment rather than an attachment # # TODO: option to use staging -- for now use # export LAUNCHPAD_API=https://api.staging.launchpad.net/ # # TODO: option to set mime type # # TODO: detect mime type if not set - could use python-magic import sys from lptools import config def guess_mime_type(attachment_bytes): try: import magic except ImportError, e: sys.stderr.write("can't guess mime-types without the python-magic library: %s" % e) mimetype = None else: mime = magic.open(magic.MAGIC_MIME) mimetype = mime.buffer(attachment_bytes) if mimetype is None: mimetype = 'application/binary' print 'attachment type %s' % mimetype return mimetype def main(argv): if len(argv) != 2 or argv[1] == '--help': print __doc__ return 3 try: bugnumber = int(argv[1]) except TypeError: sys.stderr.write("please give a Launchpad bug number\n") return 1 lp = config.get_launchpad("attach") print "getting bug %s" % bugnumber bug = lp.bugs[bugnumber] print 'Attaching to %s' % bug attachment_bytes = sys.stdin.read() print '%d bytes to attach' % len(attachment_bytes) mime_type = guess_mime_type(attachment_bytes) # mime type must be specified otherwise # <https://bugs.edge.launchpad.net/malone/+bug/204560> assumes it's # chemical/x-mopac-input print bug.addAttachment(comment='', data=attachment_bytes, description='', filename='attachment', content_type=mime_type) if __name__ == '__main__': sys.exit(main(sys.argv))