summaryrefslogtreecommitdiffstats
path: root/kresources/caldav/writer.h
blob: 437eeed0e224a9c13e3a4d3764d65b38d8285454 (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
/*=========================================================================
| KCalDAV
|--------------------------------------------------------------------------
| (c) 2010  Timothy Pearson
| (c) 2009  Kumaran Santhanam (initial KDE4 version)
|
| This project is released under the GNU General Public License.
| Please see the file COPYING for more details.
|--------------------------------------------------------------------------
| Remote calendar writing class.
 ========================================================================*/

/*=========================================================================
| INCLUDES
 ========================================================================*/

#ifndef KCALDAV_WRITER_H
#define KCALDAV_WRITER_H

#include "job.h"

#include <string>
#include <tqstring.h>
#include <tqdatetime.h>

namespace KCal {

/*=========================================================================
| CLASS
 ========================================================================*/

/**
 * Calendar writer.
 */
class CalDavWriter : public CalDavJob {

public:

    /**
     * @param url URL to load.
     */
    CalDavWriter(const TQString& url = TQString()) :
        CalDavJob(url)
    {
        clearObjects();
    }

    /**
     * Sets the information about added events writer should send to server.
     * @param s icalendar-formatted string consists of all added events plus necessary calendar info.
     * May be an empty string, which means there are no added events to send.
     */
    void setAddedObjects(const TQString& s) {
        mAdded = s;
    }

    /**
     * Sets the information about changed events writer should send to server.
     * @param s icalendar-formatted string consists of all changed events plus necessary calendar info.
     * May be an empty string, which means there are no changed events to send.
     */
    void setChangedObjects(const TQString& s) {
        mChanged = s;
    }

    /**
     * Sets the information about deleted events writer should send to server.
     * @param s icalendar-formatted string consists of all deleted events plus necessary calendar info.
     * May be an empty string, which means there are no deleted events to send.
     */
    void setDeletedObjects(const TQString& s) {
        mDeleted = s;
    }

    /**
     * Sets the information about added tasks writer should send to server.
     * @param s icalendar-formatted string consists of all added tasks plus necessary calendar info.
     * May be an empty string, which means there are no added tasks to send.
     */
    void setAddedTasksObjects(const TQString& s) {
        mTasksAdded = s;
    }

    /**
     * Sets the information about added journals writer should send to server.
     * @param s icalendar-formatted string consists of all added journals plus necessary calendar info.
     * May be an empty string, which means there are no added journals to send.
     */
    void setAddedJournalsObjects(const TQString& s) {
        mJournalsAdded = s;
    }

    /**
     * Sets the information about changed tasks writer should send to server.
     * @param s icalendar-formatted string consists of all changed tasks plus necessary calendar info.
     * May be an empty string, which means there are no changed tasks to send.
     */
    void setChangedTasksObjects(const TQString& s) {
        mTasksChanged = s;
    }

    /**
     * Sets the information about changed journals writer should send to server.
     * @param s icalendar-formatted string consists of all changed journals plus necessary calendar info.
     * May be an empty string, which means there are no changed journals to send.
     */
    void setChangedJournalsObjects(const TQString& s) {
        mJournalsChanged = s;
    }

    /**
     * Sets the information about deleted tasks writer should send to server.
     * @param s icalendar-formatted string consists of all deleted tasks plus necessary calendar info.
     * May be an empty string, which means there are no deleted tasks to send.
     */
    void setDeletedTasksObjects(const TQString& s) {
        mTasksDeleted = s;
    }

    /**
     * Sets the information about deleted journals writer should send to server.
     * @param s icalendar-formatted string consists of all deleted journals plus necessary calendar info.
     * May be an empty string, which means there are no deleted journals to send.
     */
    void setDeletedJournalsObjects(const TQString& s) {
        mJournalsDeleted = s;
    }

    /**
     * Clear all the information previously set.
     */
    void clearObjects() {
        setAddedObjects("");
        setChangedObjects("");
        setDeletedObjects("");
        setAddedTasksObjects("");
        setChangedTasksObjects("");
        setDeletedTasksObjects("");
        setAddedJournalsObjects("");
        setChangedJournalsObjects("");
        setDeletedJournalsObjects("");
    }

protected:

    virtual int runJob(runtime_info* caldavRuntime);
    virtual int runTasksJob(runtime_info* caldavRuntime);
    virtual int runJournalsJob(runtime_info* caldavRuntime);

    virtual void cleanJob();
    virtual void cleanTasksJob();
    virtual void cleanJournalsJob();

    /// Just a wrapper above libcaldav event writing functions.
    template<typename Operation>
    int pushObjects(const TQString& data, Operation op, int okCode, runtime_info* RT) {
        int r = okCode;
        if (!data.isNull() && !data.isEmpty()) {
            r = op(std::string(data.ascii()).c_str(), std::string(url().ascii()).c_str(), RT);
        }
        return r;
    }

    /// Just a wrapper above libcaldav task writing functions.
    template<typename Operation>
    int pushTasksObjects(const TQString& data, Operation op, int okCode, runtime_info* RT) {
        int r = okCode;
        if (!data.isNull() && !data.isEmpty()) {
            r = op(std::string(data.ascii()).c_str(), std::string(tasksUrl().ascii()).c_str(), RT);
        }
        return r;
    }

    /// Just a wrapper above libcaldav journal writing functions.
    template<typename Operation>
    int pushJournalsObjects(const TQString& data, Operation op, int okCode, runtime_info* RT) {
        int r = okCode;
//         if (!data.isNull() && !data.isEmpty()) {
//             r = op(std::string(data.ascii()).c_str(), std::string(journalsUrl().ascii()).c_str(), RT);
//         }
        return r;
    }

private:

    TQString mAdded;
    TQString mChanged;
    TQString mDeleted;

    TQString mTasksAdded;
    TQString mTasksChanged;
    TQString mTasksDeleted;

    TQString mJournalsAdded;
    TQString mJournalsChanged;
    TQString mJournalsDeleted;
};

} // namespace KCal

#endif // KCALDAV_WRITER_H