summaryrefslogtreecommitdiffstats
path: root/kbugbuster/backend/bugcommand.cpp
blob: 30507e706a1c782d6a99eaf53bf52e6572d2f05b (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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
#include <kdebug.h>
#include <tdeconfig.h>
#include <tdelocale.h>

#include "bugcommand.h"

TQString BugCommand::name()
{
    return i18n("Unknown");
}

TQString BugCommand::details()
{
    return TQString();
}

BugCommand *BugCommand::load( TDEConfig *config, const TQString &type )
{
    TQString bugNumber = config->group();
    // ### this sucks. we better let Bug implement proper persistance,
    // because this way of instantiating a bug object doesn't bring back
    // properties like title, package, etc. (Simon)
    Bug bug = Bug::fromNumber( bugNumber );
    Package pkg = Package(); // hack

    if ( type == "Close" ) {
        return new BugCommandClose( bug, config->readEntry( type ), pkg );
    } else if ( type == "Reopen" ) {
        return new BugCommandReopen( bug, pkg );
    } else if ( type == "Merge" ) {
        return new BugCommandMerge( config->readListEntry( type ), pkg );
    } else if ( type == "Unmerge" ) {
        return new BugCommandUnmerge( bug, pkg );
    } else if ( type == "Reassign" ) {
        return new BugCommandReassign( bug, config->readEntry( type ), pkg );
    } else if ( type == "Retitle" ) {
        return new BugCommandRetitle( bug, config->readEntry( type ), pkg );
    } else if ( type == "Severity" ) {
        return new BugCommandSeverity( bug, config->readEntry( type ), pkg );
    } else if ( type == "Reply" ) {
        return new BugCommandReply( bug, config->readEntry( type ), config->readNumEntry("Recipient",Normal) );
    } else if ( type == "ReplyPrivate" ) {
        TQStringList args = config->readListEntry( type );
        if ( args.count() != 2 ) return 0;
        return new BugCommandReplyPrivate( bug, *(args.at(0)), *(args.at(1)) );
    } else {
      kdDebug() << "Warning! Unknown bug command '" << type << "'" << endl;
      return 0;
    }
}

///////////////////// Close /////////////////////

TQString BugCommandClose::controlString() const
{
    if (m_message.isEmpty()) {
        return "close " + m_bug.number();
    } else {
        return TQString();
    }
}

TQString BugCommandClose::mailAddress() const
{
    kdDebug() << "BugCommandClose::mailAddress(): number: " << m_bug.number() << endl;

    if (m_message.isEmpty()) {
        return TQString();
    } else {
        return m_bug.number() + "-done@bugs.trinitydesktop.org";
    }
}

TQString BugCommandClose::mailText() const
{
    if (m_message.isEmpty()) {
        return TQString();
    } else {
        return m_message;
    }
}

TQString BugCommandClose::name()
{
    return i18n("Close");
}

TQString BugCommandClose::details() const
{
    return m_message;
}

void BugCommandClose::save( TDEConfig *config )
{
    config->writeEntry( "Close",m_message );
}

///////////////////// Close Silently /////////////////////

TQString BugCommandCloseSilently::controlString() const
{
    return "done " + m_bug.number();
}

TQString BugCommandCloseSilently::name()
{
    return i18n("Close Silently");
}

void BugCommandCloseSilently::save( TDEConfig *config )
{
    config->writeEntry( "CloseSilently", true );
}

///////////////////// Reopen /////////////////////

TQString BugCommandReopen::controlString() const
{
    return "reopen " + m_bug.number();
}

TQString BugCommandReopen::name()
{
    return i18n("Reopen");
}

void BugCommandReopen::save( TDEConfig *config )
{
    config->writeEntry( "Reopen", true );
}

///////////////////// Retitle /////////////////////

TQString BugCommandRetitle::controlString() const
{
    return "retitle " + m_bug.number() + " " + m_title;
}

TQString BugCommandRetitle::name()
{
    return i18n("Retitle");
}

TQString BugCommandRetitle::details() const
{
    return m_title;
}

void BugCommandRetitle::save( TDEConfig *config )
{
    config->writeEntry( "Retitle", m_title );
}

///////////////////// Merge /////////////////////

TQString BugCommandMerge::controlString() const
{
    return "merge " + m_bugNumbers.join(" ");
}

TQString BugCommandMerge::name()
{
    return i18n("Merge");
}

TQString BugCommandMerge::details() const
{
    return m_bugNumbers.join(", ");
}

void BugCommandMerge::save( TDEConfig *config )
{
    config->writeEntry( "Merge", m_bugNumbers );
}

///////////////////// Unmerge /////////////////////

TQString BugCommandUnmerge::controlString() const
{
    return "unmerge " + m_bug.number();
}

TQString BugCommandUnmerge::name()
{
    return i18n("Unmerge");
}

void BugCommandUnmerge::save( TDEConfig *config )
{
    config->writeEntry( "Unmerge", true );
}

///////////////////// Reply /////////////////////

TQString BugCommandReply::mailAddress() const
{
    return m_bug.number() + "@bugs.trinitydesktop.org";
#if 0
    switch ( m_recipient ) {
      case Normal:
        return m_bug.number() + "@bugs.trinitydesktop.org";
      case Maintonly:
        return m_bug.number() + "-maintonly@bugs.trinitydesktop.org";
      case Quiet:
        return m_bug.number() + "-quiet@bugs.trinitydesktop.org";
    }
    return TQString();
#endif
}

TQString BugCommandReply::mailText() const
{
    return m_message;
}

TQString BugCommandReply::name()
{
    return i18n("Reply");
#if 0
    switch ( m_recipient ) {
      case Normal:
        return i18n("Reply");
      case Maintonly:
        return i18n("Reply (Maintonly)");
      case Quiet:
        return i18n("Reply (Quiet)");
    }
    return TQString();
#endif
}

TQString BugCommandReply::details() const
{
    return m_message;
}

void BugCommandReply::save( TDEConfig *config )
{
    config->writeEntry( "Reply", m_message );
#if 0
    config->writeEntry( "Recipient", m_recipient );
#endif
}

///////////////////// Reply Private /////////////////////

TQString BugCommandReplyPrivate::mailAddress() const
{
    return m_address;
}

TQString BugCommandReplyPrivate::mailText() const
{
    return m_message;
}

TQString BugCommandReplyPrivate::name()
{
    return i18n("Private Reply");
}

TQString BugCommandReplyPrivate::details() const
{
    return m_message;
}

void BugCommandReplyPrivate::save( TDEConfig *config )
{
    TQStringList args;
    args << m_address;
    args << m_message;
    config->writeEntry( "ReplyPrivate", args );
}

///////////////////// Severity /////////////////////

TQString BugCommandSeverity::controlString() const
{
    return "severity " + m_bug.number() + " " + m_severity.lower();
}

TQString BugCommandSeverity::name()
{
    return i18n("Severity");
}

TQString BugCommandSeverity::details() const
{
    return m_severity;
}

void BugCommandSeverity::save( TDEConfig *config )
{
    config->writeEntry( "Severity", m_severity );
}

///////////////////// Reassign /////////////////////

TQString BugCommandReassign::controlString() const
{
    return "reassign " + m_bug.number() + " " + m_package;
}

TQString BugCommandReassign::name()
{
    return i18n("Reassign");
}

TQString BugCommandReassign::details() const
{
    return m_package;
}

void BugCommandReassign::save( TDEConfig *config )
{
    config->writeEntry( "Reassign", m_package );
}