-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathNotes.php
More file actions
158 lines (139 loc) · 3.58 KB
/
Copy pathNotes.php
File metadata and controls
158 lines (139 loc) · 3.58 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
<?php
namespace phpCollab\Notes;
use phpCollab\Database;
/**
* Class Notes
* @package phpCollab\Notes
*/
class Notes
{
protected $notes_gateway;
protected $db;
/**
* Notes constructor.
* @param Database $database
*/
public function __construct(Database $database)
{
$this->db = $database;
$this->notes_gateway = new NotesGateway($this->db);
}
/**
* @param $noteId
* @return mixed
*/
public function getNoteById($noteId)
{
return $this->notes_gateway->getNoteById($noteId);
}
/**
* @param $noteId
* @return mixed
*/
public function getNotesById($noteId)
{
return $this->notes_gateway->getNotesById($noteId);
}
/**
* @param $projectId
* @param null $offset
* @param null $limit
* @param null $sorting
* @return mixed
* @internal param $noteId
*/
public function getNoteByProject($projectId, $offset = null, $limit = null, $sorting = null)
{
return $this->notes_gateway->getNoteByProject($projectId, $offset, $limit, $sorting);
}
/**
* @param $projectId
* @return mixed
*/
public function getNotesCountByProject($projectId)
{
return $this->notes_gateway->getNoteByProject($projectId);
}
/**
* @param $memberId
* @return mixed
*/
public function getMyNotesWhereProjectIsNotCompletedOrSuspended($memberId)
{
$memberId = filter_var($memberId, FILTER_VALIDATE_INT);
return $this->notes_gateway->getMyNotesWhereProjectIsNotCompletedOrSuspended($memberId);
}
/**
* @param $ownerId
* @param $dateFilter
* @param null $sorting
* @return mixed
*/
public function getMyDateFilteredNotes($ownerId, $dateFilter = null, $sorting = null)
{
return $this->notes_gateway->getDateFilteredNotesByOwner($ownerId, $dateFilter, $sorting);
}
/**
* @param $noteData
* @return string
*/
public function addNote($noteData): string
{
return $this->notes_gateway->insertNote($noteData);
}
/**
* @param $noteId
* @param $noteData
* @return mixed
*/
public function updateNote($noteId, $noteData)
{
return $this->notes_gateway->updateNote($noteId, $noteData);
}
/**
* @param $noteId
* @return mixed
*/
public function deleteNotes($noteId)
{
$noteId = filter_var((string)$noteId, FILTER_SANITIZE_STRING);
return $this->notes_gateway->deleteNotes($noteId);
}
/**
* @param $projectIds
* @return mixed
*/
public function deleteNotesByProjectId($projectIds)
{
return $this->notes_gateway->deleteNotesByProjectId($projectIds);
}
/**
* @param $noteId
* @return mixed
*/
public function publishToSite($noteId)
{
$noteId = filter_var((string)$noteId, FILTER_SANITIZE_STRING);
return $this->notes_gateway->publishNoteToSite($noteId);
}
/**
* @param $noteId
* @return mixed
*/
public function unPublishFromSite($noteId)
{
$noteId = filter_var((string)$noteId, FILTER_SANITIZE_STRING);
return $this->notes_gateway->unPublishNoteFromSite($noteId);
}
/**
* @param $tmpQuery
* @param null $sorting
* @param null $limit
* @param null $rowLimit
* @return mixed
*/
public function getSearchNotes($tmpQuery, $sorting = null, $limit = null, $rowLimit = null)
{
return $this->notes_gateway->searchResultNotes($tmpQuery, $sorting, $limit, $rowLimit);
}
}