| 53 | * 'Send Report' button: |
| 54 | * add SEND_REPORT BugReportDialog.EventIds enum |
| 55 | * in BugReportDialog.swingComponent...create() create a new {{{ LogicR3Button }}} that fires a SEND_REPORT event when clicked and add it to the bottom panel |
| 56 | |
| 57 | * 'Send Report' logic: |
| 58 | * A new operation ON_SEND_REPORT in {{{ BugReportLogic }}} should handle a user request to send a bug report. |
| 59 | * Using the util class ConnectionUtil (see below) it will open a new HTTP connection to "sophie2.org/bugreports", send the bug report data (which may include an attached file) as a multi-part HTTP request and read the response from the server |
| 60 | * If no exceptions occurred during the communication with the server, an informative {{{ MessageDialogInput }}} will be shown. |
| 61 | * The response of the server will be a string which will be shown in this dialog. |
| 62 | * If an exception occured during the communication with the server, an error dialog will appear to inform the user that ther bug report was not processed. |
| 63 | * (?) However, no new bug report form will appear. |
| 64 | |
| 65 | * Move some of the logic for sending multi-part requests from {{{ FacadeInvocationHandler }}} to a new class {{{ ConnectionUtil }}} in {{{ org.sophie2.base.commons.util }}} package. |
| 66 | * The new class will contain the following methods: |
| 67 | * {{{ public static HttpURLConnection createConnection(String urlAddress) throws IOException }}} - creates an HttpURLConnection to the HTTP server referred to by the given URL. |
| 68 | * {{{ public static void writeData(HttpURLConnection connection, String[] names, Object[] dataValues) throws IOException }}} - sends a multi-part POST request using the specified connection (as if from a form using ENCTYPE="multipart/form-data"). |
| 69 | * The {{{ names }}} argument contains the names of the fields to send. |
| 70 | * The {{{ values }}} argument contains the values to send. They should be either Strings or Files. |
| 71 | * Files are Base64 encoded. |
| 72 | * {{{ public static String readResponse(HttpURLConnection connection) throws IOException }}} - reads the response sent through the specified connection. |
| 73 | |
| 74 | * Database: |
| 75 | * Create a new database on sophie2.org with a single table {{{ reports }}}. |
| 76 | * The table should contain the following columns: |
| 77 | * id - INTEGER AUTO_INCREMENT PRIMARY KEY |
| 78 | * date - DATETIME - the time when the report was submitted |
| 79 | * stacktrace - TEXT - stacktrace of the exception that caused the bug report form to appear and the user to submit the report |
| 80 | * log - TEXT - the contents of Sophie's Log file around the time when the exception occurred |
| 81 | * systemProperties - TEXT - all Java system properties at the moment of the bug report submission, serialized as string. |
| 82 | * email - VARCHAR(50) - user e-mail |
| 83 | * userExplanation - TEXT - user notes |
| 84 | |
| 85 | * Php script to process the bug reports: |
| 86 | * reads the data in $_POST and using a simple sql query, writes it in the database; |
| 87 | * renames the attached files in the way specified in the implementation idea and uploads them in a special folder on the server |
| 88 | |
| 89 | * Source code: [8007] |
| 90 | |