summaryrefslogtreecommitdiff
path: root/portato/gui/windows/mailinfo.py
blob: 3cdfb7d62cd9f0d002b74a9b0f2864c85b8c5405 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
# -*- coding: utf-8 -*-
#
# File: portato/gui/windows/mailinfo.py
# This file is part of the Portato-Project, a graphical portage-frontend.
#
# Copyright (C) 2006-2010 René 'Necoro' Neumann
# This is free software.  You may redistribute copies of it under the terms of
# the GNU General Public License version 2.
# There is NO WARRANTY, to the extent permitted by law.
#
# Written by René 'Necoro' Neumann <necoro@necoro.net>



import smtplib, socket
import time
import gtk, pango, gobject
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from os.path import basename

from .basic import AbstractDialog
from ..utils import GtkThread
from .. import dialogs
from ...helper import debug, info
from ...constants import VERSION, CONFIG_LOCATION
from ...log import LOGFILE
from ... import session

def mail_failure_dialog(*a):
    dialogs.mail_failure_dialog(*a)
    return False

class ShowDialog (gtk.Dialog):

    def __init__(self, parent, f):
        gtk.Dialog.__init__(self, f, parent, buttons = (gtk.STOCK_CLOSE, gtk.RESPONSE_CLOSE))

        textview = gtk.TextView()
        textview.set_editable(False)
        textview.modify_font(pango.FontDescription("Monospace"))
        textview.set_size_request(gtk.gdk.screen_width()/2, gtk.gdk.screen_height()/3)
    
        sw = gtk.ScrolledWindow();
        sw.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
        sw.add(textview)
        
        self.vbox.add(sw)

        textbuffer = textview.get_buffer()

        with open(f) as text:
            textbuffer.set_text(text.read())

        self.vbox.show_all()

class MailInfoWindow (AbstractDialog):
    TO = "bugs@necoro.eu"

    def __init__ (self, parent, tb):

        AbstractDialog.__init__(self, parent)

        self.files = [LOGFILE, CONFIG_LOCATION] + [s._file for s in session.sessionlist]
        self.fileList = self.tree.get_widget("fileList")
        self.build_file_list()
        
        self.mailEntry = self.tree.get_widget("mailEntry")
        self.tb = tb
        self.window.show_all()

    def build_file_list(self):
        store = gtk.ListStore(bool, str)

        for f in self.files:
            store.append((True, f))

        self.fileList.set_model(store)
        cell = gtk.CellRendererText()
        tCell = gtk.CellRendererToggle()
        tCell.set_property("activatable", True)
        tCell.connect("toggled", self.cb_file_toggled)

        self.fileList.append_column(gtk.TreeViewColumn(None, tCell, active = 0))
        self.fileList.append_column(gtk.TreeViewColumn(None, cell, text = 1))

    def cb_file_toggled(self, cell, path):
        store = self.fileList.get_model()
        store[path][0] = not store[path][0]
        return True

    def cb_file_clicked(self, view, path, *args):
        store = view.get_model()
        f = store[path][1]
        
        dialog = ShowDialog(self.window, f)
        dialog.run()
        dialog.destroy()

    def set_data (self):
        self.message = MIMEMultipart()
        self.message["Subject"] = "[Bug Report] Bug in Portato %s" % VERSION
        self.message["To"] = self.TO
        self.message["X-Portato-Version"] = VERSION
        
        # TO and FROM        
        name = self.tree.get_widget("nameEntry").get_text()
        self.addr = self.mailEntry.get_text()

        if not self.addr:
            self.addr = self.TO

        if name:
            self.message["From"] = "%s <%s>" % (name, self.addr)
        else:
            self.message["From"] = self.addr

        # text
        commentBuffer = self.tree.get_widget("commentEntry").get_buffer()
        text = commentBuffer.get_text(*commentBuffer.get_bounds())

        if text:
            text += "\n\n===========\n"

        text += self.tb

        txtmsg = MIMEText(text, "plain", "utf-8")
        self.message.attach(txtmsg)

        # logs
        for (active, f) in self.fileList.get_model():
            if active:
                debug("Attaching '%s'", f)
                with open(f, "r") as text:
                    log = MIMEText(text.read(), "plain", "utf-8")
                    log.add_header('Content-Disposition', 'attachment', filename=basename(f))

                self.message.attach(log)

    def send (self):
        try:
            for i in range(5): # try 5 times at max
                if i > 0:
                    info(_("Retrying after waiting %d seconds."), 300)
                    time.sleep(300)
                try:
                    debug("Connecting to server")
                    server = smtplib.SMTP("mail.necoro.eu")
                    debug("Sending mail")
                    
                    if smtplib._have_ssl: server.starttls()
                    else: debug("TLS not supported in Python. Continuing without it.")

                    server.sendmail(self.addr, self.TO, self.message.as_string())
                except smtplib.SMTPRecipientsRefused as e:
                    if e.recipients[self.TO][0] < 500:
                        info(_("An error occurred while sending. I think we were greylisted. The error: %s") % e)
                    else: raise
                else:
                    debug("Sent")
                    break
                finally:
                    try:
                        server.quit()
                    except smtplib.SMTPServerDisconnected:
                        pass # ignore this
        except socket.error as e:
            gobject.idle_add(mail_failure_dialog, "%s (Code: %s)" % (e.args[1], e.args[0]))
        except smtplib.SMTPResponseException as e:
            gobject.idle_add(mail_failure_dialog, "%s (Code: %s)" % (e.smtp_error, e.smtp_code))
        except smtplib.SMTPException as e:
            gobject.idle_add(mail_failure_dialog, e.args)
        
    def cb_cancel_clicked (self, *args):
        self.close()
        return True

    def cb_send_clicked (self, *args):
        if self.mailEntry.get_text() or dialogs.no_email_dialog(self.window) == gtk.RESPONSE_OK:
            self.set_data()
            GtkThread(target = self.send, name = "Mail Send Thread").start()
            self.close()
        else:
            self.window.present()
            self.mailEntry.grab_focus()

        return True