Collection.php
10.9 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
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
<?php
namespace Phalcon\Mvc {
/**
* Phalcon\Mvc\Collection
*
* This component implements a high level abstraction for NoSQL databases which
* works with documents
*/
class Collection implements \Phalcon\Mvc\CollectionInterface, \Phalcon\DI\InjectionAwareInterface, \Serializable {
const OP_NONE = 0;
const OP_CREATE = 1;
const OP_UPDATE = 2;
const OP_DELETE = 3;
public $_id;
protected $_dependencyInjector;
protected $_modelsManager;
protected $_source;
protected $_operationMade;
protected $_connection;
protected $_errorMessages;
protected static $_reserved;
protected static $_disableEvents;
/**
* \Phalcon\Mvc\Model constructor
*
* @param \Phalcon\DiInterface $dependencyInjector
* @param \Phalcon\Mvc\Collection\ManagerInterface $modelsManager
*/
final public function __construct($dependencyInjector=null, $modelsManager=null){ }
/**
* Sets a value for the _id property, creates a MongoId object if needed
*
* @param mixed $id
*/
public function setId($id){ }
/**
* Returns the value of the _id property
*
* @return \MongoId
*/
public function getId(){ }
/**
* Sets the dependency injection container
*
* @param \Phalcon\DiInterface $dependencyInjector
*/
public function setDI($dependencyInjector){ }
/**
* Returns the dependency injection container
*
* @return \Phalcon\DiInterface
*/
public function getDI(){ }
/**
* Sets a custom events manager
*
* @param \Phalcon\Events\ManagerInterface $eventsManager
*/
protected function setEventsManager(){ }
/**
* Returns the custom events manager
*
* @return \Phalcon\Events\ManagerInterface
*/
protected function getEventsManager(){ }
/**
* Returns the models manager related to the entity instance
*
* @return \Phalcon\Mvc\Model\ManagerInterface
*/
public function getModelsManager(){ }
/**
* Returns an array with reserved properties that cannot be part of the insert/update
*
* @return array
*/
public function getReservedAttributes(){ }
/**
* Sets if a model must use implicit objects ids
*
* @param boolean $useImplicitObjectIds
*/
protected function useImplicitObjectIds(){ }
/**
* Sets collection name which model should be mapped
*
* @param string $source
* @return \Phalcon\Mvc\Collection
*/
protected function setSource(){ }
/**
* Returns collection name mapped in the model
*
* @return string
*/
public function getSource(){ }
/**
* Sets the DependencyInjection connection service name
*
* @param string $connectionService
* @return \Phalcon\Mvc\Model
*/
public function setConnectionService($connectionService){ }
/**
* Returns DependencyInjection connection service
*
* @return string
*/
public function getConnectionService(){ }
/**
* Retrieves a database connection
*
* @return \MongoDb
*/
public function getConnection(){ }
/**
* Reads an attribute value by its name
*
*<code>
* echo $robot->readAttribute('name');
*</code>
*
* @param string $attribute
* @return mixed
*/
public function readAttribute($attribute){ }
/**
* Writes an attribute value by its name
*
*<code>
* $robot->writeAttribute('name', 'Rosey');
*</code>
*
* @param string $attribute
* @param mixed $value
*/
public function writeAttribute($attribute, $value){ }
/**
* Returns a cloned collection
*
* @param \Phalcon\Mvc\Collection $collection
* @param array $document
* @return \Phalcon\Mvc\Collection
*/
public static function cloneResult($collection, $document){ }
/**
* Returns a collection resultset
*
* @param array $params
* @param \Phalcon\Mvc\Collection $collection
* @param \MongoDb $connection
* @param boolean $unique
* @return array
*/
protected static function _getResultset(){ }
/**
* Perform a count over a resultset
*
* @param array $params
* @param \Phalcon\Mvc\Collection $collection
* @param \MongoDb $connection
* @return int
*/
protected static function _getGroupResultset(){ }
/**
* Executes internal hooks before save a document
*
* @param \Phalcon\DiInterface $dependencyInjector
* @param boolean $disableEvents
* @param boolean $exists
* @return boolean
*/
protected function _preSave(){ }
/**
* Executes internal events after save a document
*
* @param boolean $disableEvents
* @param boolean $success
* @param boolean $exists
* @return boolean
*/
protected function _postSave(){ }
/**
* Executes validators on every validation call
*
*<code>
*use \Phalcon\Mvc\Model\Validator\ExclusionIn as ExclusionIn;
*
*class Subscriptors extends \Phalcon\Mvc\Collection
*{
*
* public function validation()
* {
* $this->validate(new ExclusionIn(array(
* 'field' => 'status',
* 'domain' => array('A', 'I')
* )));
* if ($this->validationHasFailed() == true) {
* return false;
* }
* }
*
*}
*</code>
*
* @param object $validator
*/
protected function validate(){ }
/**
* Check whether validation process has generated any messages
*
*<code>
*use \Phalcon\Mvc\Model\Validator\ExclusionIn as ExclusionIn;
*
*class Subscriptors extends \Phalcon\Mvc\Collection
*{
*
* public function validation()
* {
* $this->validate(new ExclusionIn(array(
* 'field' => 'status',
* 'domain' => array('A', 'I')
* )));
* if ($this->validationHasFailed() == true) {
* return false;
* }
* }
*
*}
*</code>
*
* @return boolean
*/
public function validationHasFailed(){ }
/**
* Fires an internal event
*
* @param string $eventName
* @return boolean
*/
public function fireEvent($eventName){ }
/**
* Fires an internal event that cancels the operation
*
* @param string $eventName
* @return boolean
*/
public function fireEventCancel($eventName){ }
/**
* Cancel the current operation
*
* @return boolean
*/
protected function _cancelOperation(){ }
/**
* Checks if the document exists in the collection
*
* @param \MongoCollection $collection
*/
protected function _exists(){ }
/**
* Returns all the validation messages
*
* <code>
*$robot = new Robots();
*$robot->type = 'mechanical';
*$robot->name = 'Astro Boy';
*$robot->year = 1952;
*if ($robot->save() == false) {
* echo "Umh, We can't store robots right now ";
* foreach ($robot->getMessages() as $message) {
* echo $message;
* }
*} else {
* echo "Great, a new robot was saved successfully!";
*}
* </code>
*
* @return \Phalcon\Mvc\Model\MessageInterface[]
*/
public function getMessages(){ }
/**
* Appends a customized message on the validation process
*
*<code>
* use \Phalcon\Mvc\Model\Message as Message;
*
* class Robots extends \Phalcon\Mvc\Model
* {
*
* public function beforeSave()
* {
* if ($this->name == 'Peter') {
* $message = new Message("Sorry, but a robot cannot be named Peter");
* $this->appendMessage($message);
* }
* }
* }
*</code>
*
* @param \Phalcon\Mvc\Model\MessageInterface $message
*/
public function appendMessage($message){ }
/**
* Creates/Updates a collection based on the values in the atributes
*
* @return boolean
*/
public function save(){ }
/**
* Find a document by its id (_id)
*
* @param string|\MongoId $id
* @return \Phalcon\Mvc\Collection
*/
public static function findById($id){ }
/**
* Allows to query the first record that match the specified conditions
*
* <code>
*
* //What's the first robot in the robots table?
* $robot = Robots::findFirst();
* echo "The robot name is ", $robot->name, "\n";
*
* //What's the first mechanical robot in robots table?
* $robot = Robots::findFirst(array(
* array("type" => "mechanical")
* ));
* echo "The first mechanical robot name is ", $robot->name, "\n";
*
* //Get first virtual robot ordered by name
* $robot = Robots::findFirst(array(
* array("type" => "mechanical"),
* "order" => array("name" => 1)
* ));
* echo "The first virtual robot name is ", $robot->name, "\n";
*
* </code>
*
* @param array $parameters
* @return array
*/
public static function findFirst($parameters=null){ }
/**
* Allows to query a set of records that match the specified conditions
*
* <code>
*
* //How many robots are there?
* $robots = Robots::find();
* echo "There are ", count($robots), "\n";
*
* //How many mechanical robots are there?
* $robots = Robots::find(array(
* array("type" => "mechanical")
* ));
* echo "There are ", count($robots), "\n";
*
* //Get and print virtual robots ordered by name
* $robots = Robots::findFirst(array(
* array("type" => "virtual"),
* "order" => array("name" => 1)
* ));
* foreach ($robots as $robot) {
* echo $robot->name, "\n";
* }
*
* //Get first 100 virtual robots ordered by name
* $robots = Robots::find(array(
* array("type" => "virtual"),
* "order" => array("name" => 1),
* "limit" => 100
* ));
* foreach ($robots as $robot) {
* echo $robot->name, "\n";
* }
* </code>
*
* @param array $parameters
* @return array
*/
public static function find($parameters=null){ }
/**
* Perform a count over a collection
*
*<code>
* echo 'There are ', Robots::count(), ' robots';
*</code>
*
* @param array $parameters
* @return array
*/
public static function count($parameters=null){ }
/**
* Perform an aggregation using the Mongo aggregation framework
*
* @param array $parameters
* @return array
*/
public static function aggregate($parameters){ }
/**
* Allows to perform a summatory group for a column in the collection
*
* @param string $field
* @param array $conditions
* @param string $finalize
* @return array
*/
public static function summatory($field, $conditions=null, $finalize=null){ }
/**
* Deletes a model instance. Returning true on success or false otherwise.
*
* <code>
*
* $robot = Robots::findFirst();
* $robot->delete();
*
* foreach (Robots::find() as $robot) {
* $robot->delete();
* }
* </code>
*
* @return boolean
*/
public function delete(){ }
/**
* Returns the instance as an array representation
*
*<code>
* print_r($robot->toArray());
*</code>
*
* @return array
*/
public function toArray(){ }
/**
* Serializes the object ignoring connections or protected properties
*
* @return string
*/
public function serialize(){ }
/**
* Unserializes the object from a serialized string
*
* @param string $data
*/
public function unserialize($data){ }
}
}