forked from coding/Coding-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTask.m
More file actions
executable file
·268 lines (244 loc) · 8.6 KB
/
Task.m
File metadata and controls
executable file
·268 lines (244 loc) · 8.6 KB
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
//
// Task.m
// Coding_iOS
//
// Created by 王 原闯 on 14-8-15.
// Copyright (c) 2014年 Coding. All rights reserved.
//
#import "Task.h"
#import "ProjectActivity.h"
@implementation Task
- (instancetype)init
{
self = [super init];
if (self) {
_propertyArrayMap = [NSDictionary dictionaryWithObjectsAndKeys:
@"ProjectTag", @"labels", nil];
_handleType = TaskHandleTypeEdit;
_isRequesting = _isRequestingDetail = _isRequestingCommentList = NO;
_needRefreshDetail = NO;
}
return self;
}
- (void)setOwner:(User *)owner{
if (owner != _owner) {
_owner = owner;
_owner_id = owner.id;
}
}
- (void)setLabels:(NSMutableArray *)labels{
//过滤掉服务器传过来的脏数据
[labels filterUsingPredicate:[NSPredicate predicateWithFormat:@"name.length > 0"]];
_labels = labels;
}
- (void)setDescription_mine:(NSString *)description_mine{
if (_description_mine != description_mine) {
HtmlMedia *htmlMedia = [HtmlMedia htmlMediaWithString:description_mine showType:MediaShowTypeImageAndMonkey];
_description_mine = htmlMedia.contentDisplay;
}
}
- (void)setDeadline:(NSString *)deadline{
_deadline = deadline;
if (deadline && deadline.length >= 10) {
_deadline_date = [NSDate dateFromString:deadline withFormat:@"yyyy-MM-dd"];
}else{
_deadline_date = nil;
}
}
+ (Task *)taskWithProject:(Project *)project andUser:(User *)user{
Task *curTask = [[Task alloc] init];
curTask.project = project;
curTask.creator = [Login curLoginUser];
curTask.owner = user;
curTask.status = [NSNumber numberWithInt:1];
curTask.handleType = project != nil? TaskHandleTypeAddWithProject: TaskHandleTypeAddWithoutProject;
curTask.priority = [NSNumber numberWithInt:1];
curTask.content = @"";
curTask.has_description = [NSNumber numberWithBool:NO];
curTask.task_description = [Task_Description defaultDescription];
return curTask;
}
+ (Task *)taskWithTask:(Task *)task{
Task *curTask = [[Task alloc] init];
[curTask copyDataFrom:task];
return curTask;
}
+ (Task *)taskWithBackend_project_path:(NSString *)backend_project_path andId:(NSString *)taskId{
Task *curTask = [[Task alloc] init];
curTask.backend_project_path = backend_project_path;
curTask.id = [NSNumber numberWithInteger:taskId.integerValue];
curTask.needRefreshDetail = YES;
return curTask;
}
- (BOOL)isSameToTask:(Task *)task{
if (!task) {
return NO;
}
return ([self.content isEqualToString:task.content]
&& [self.owner.global_key isEqualToString:task.owner.global_key]
&& self.priority.intValue == task.priority.intValue
&& self.status.intValue == task.status.intValue
&& ((!self.deadline && !task.deadline) || [self.deadline isEqualToString:task.deadline])
&& [ProjectTag tags:self.labels isEqualTo:task.labels]
);
}
- (void)copyDataFrom:(Task *)task{
self.id = task.id;
self.backend_project_path = task.backend_project_path;
self.project = task.project;
self.creator = task.creator;
self.owner = task.owner;
self.owner_id = task.owner_id;
self.status = task.status;
self.content = task.content;
self.title = task.title;
self.created_at = task.created_at;
self.updated_at = task.updated_at;
self.handleType = task.handleType;
self.isRequesting = task.isRequesting;
self.isRequestingDetail = task.isRequestingDetail;
self.isRequestingCommentList = task.isRequestingCommentList;
self.priority = task.priority;
self.comments = task.comments;
self.needRefreshDetail = task.needRefreshDetail;
self.deadline = task.deadline;
self.number = task.number;
self.has_description = task.has_description;
self.task_description = task.task_description;
self.labels = [task.labels mutableCopy];
}
//任务状态
- (NSString *)toEditTaskStatusPath{
return [NSString stringWithFormat:@"api/task/%d/status", self.id.intValue];
}
-(NSDictionary *)toEditStatusParams{
return @{@"status" : self.status};
}
-(NSDictionary *)toChangeStatusParams{
NSNumber *status = [NSNumber numberWithInteger:(_status.integerValue != 1? 1 : 2)];
return @{@"status" : status};
}
//更新任务
- (NSString *)toUpdatePath{
return [NSString stringWithFormat:@"api/task/%@/update", self.id.stringValue];
}
-(NSDictionary *)toUpdateParamsWithOld:(Task *)oldTask{
NSMutableDictionary *params = [NSMutableDictionary dictionary];
//内容
if (self.content && ![self.content isEqualToString:oldTask.content]) {
[params setObject:self.content forKey:@"content"];
}
//执行者
if (self.owner_id && self.owner_id.integerValue != oldTask.owner_id.integerValue) {
[params setObject:self.owner_id forKey:@"owner_id"];
}
//优先级
if (self.priority && self.priority.integerValue != oldTask.priority.integerValue) {
[params setObject:self.priority forKey:@"priority"];
}
//阶段
if (self.status && self.status.integerValue != oldTask.status.integerValue) {
[params setObject:self.status forKey:@"status"];
}
//截止日期
if ((oldTask.deadline && self.deadline && ![self.deadline isEqualToString:oldTask.deadline])
|| (!oldTask.deadline && self.deadline)) {
[params setObject:self.deadline forKey:@"deadline"];
}else if (oldTask.deadline && !self.deadline){
[params setObject:@"" forKey:@"deadline"];
}
return params;
}
//更新任务描述
- (NSString *)toUpdateDescriptionPath{
return [NSString stringWithFormat:@"api/task/%d/description", self.id.intValue];
}
//添加新任务
- (NSString *)toAddTaskPath{
return [NSString stringWithFormat:@"api%@/task", self.backend_project_path];
}
- (NSDictionary *)toAddTaskParams{
NSMutableDictionary *params = [@{@"content" : [self.content aliasedString],
@"owner_id" : self.owner.id,
@"priority" : self.priority} mutableCopy];
if (self.deadline.length >= 10) {
params[@"deadline"] = self.deadline;
}
if (self.task_description.markdown.length > 0) {
params[@"description"] = [self.task_description.markdown aliasedString];
}
if (self.labels.count > 0) {
NSMutableArray *labels = [NSMutableArray new];
for (ProjectTag *curL in self.labels) {
[labels addObject:curL.id.stringValue];
}
params[@"labels"] = labels;
}
return params;
}
//删除任务
- (NSString *)toDeleteTaskPath{
return [NSString stringWithFormat:@"api%@/task/%ld", self.backend_project_path, (long)self.id.integerValue];
}
//任务评论列表
- (NSString *)toCommentListPath{
return [NSString stringWithFormat:@"api/task/%ld/comments", (long)self.id.integerValue];
}
- (NSDictionary *)toCommentListParams{
return @{@"page" : [NSNumber numberWithInt:1],
@"pageSize" : [NSNumber numberWithInt:500]};
}
//任务动态列表
- (NSString *)toActivityListPath{
return [NSString stringWithFormat:@"api/activity/task/%ld", (long)self.id.integerValue];
}
//任务详情
- (NSString *)toTaskDetailPath{
return [NSString stringWithFormat:@"api%@/task/%ld", self.backend_project_path, (long)self.id.integerValue];
}
//任务描述
- (NSString *)toDescriptionPath{
return [NSString stringWithFormat:@"api/task/%@/description", self.id.stringValue];
}
- (NSString *)backend_project_path{
if (!_backend_project_path || _backend_project_path.length <= 0) {
if (self.project && self.project.backend_project_path && self.project.backend_project_path.length > 0) {
_backend_project_path = self.project.backend_project_path;
}
}
return _backend_project_path;
}
//评论任务
- (NSString *)toDoCommentPath{
return [NSString stringWithFormat:@"api/task/%ld/comment", (long)self.id.integerValue];
}
- (NSDictionary *)toDoCommentParams{
if (_nextCommentStr) {
return @{@"content" : [_nextCommentStr aliasedString]};
}else{
return nil;
}
}
- (NSString *)toEditLabelsPath{
return [NSString stringWithFormat:@"api%@/task/%@/labels", self.backend_project_path, _id.stringValue];
}
@end
@implementation Task_Description
- (instancetype)init
{
self = [super init];
if (self) {
self.markdown = @"";
self.description_mine = @"";
}
return self;
}
+ (instancetype)defaultDescription{
return [[Task_Description alloc] init];
}
+ (instancetype)descriptionWithMdStr:(NSString *)mdStr{
Task_Description *taskD = [Task_Description defaultDescription];
taskD.markdown = mdStr;
return taskD;
}
@end