-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathClient.php
More file actions
790 lines (699 loc) · 15 KB
/
Copy pathClient.php
File metadata and controls
790 lines (699 loc) · 15 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
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
<?php
namespace T3Monitor\T3monitoring\Domain\Model;
/*
* This file is part of the t3monitoring extension for TYPO3 CMS.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*/
use T3Monitor\T3monitoring\Domain\Repository\TaskRepository;
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Extbase\Object\ObjectManager;
use TYPO3\CMS\Extbase\Persistence\ObjectStorage;
use TYPO3\CMS\Extbase\DomainObject\AbstractEntity;
use TYPO3\CMS\Extbase\Persistence\Generic\LazyLoadingProxy;
/**
* Client
*/
class Client extends AbstractEntity
{
/**
* @var string
* @TYPO3\CMS\Extbase\Annotation\Validate("NotEmpty")
*/
protected $title = '';
/**
* @var string
* @TYPO3\CMS\Extbase\Annotation\Validate("NotEmpty")
*/
protected $domain = '';
/**
* @var string
*/
protected $hostHeader = '';
/**
* @var bool
*/
protected $ignoreCertErrors = false;
/**
* @var string
*/
protected $forceIpResolve = '';
/**
* @var string
*/
protected $basicAuthUsername = '';
/**
* @var string
*/
protected $basicAuthPassword = '';
/**
* @var string
* @TYPO3\CMS\Extbase\Annotation\Validate("NotEmpty")
*/
protected $secret = '';
/**
* @var string
*/
protected $email = '';
/**
* @var string
*/
protected $phpVersion = '';
/**
* @var string
*/
protected $mysqlVersion = '';
/**
* @var int
*/
protected $diskTotalSpace = 0;
/**
* @var int
*/
protected $diskFreeSpace = 0;
/**
* @var bool
*/
protected $insecureCore = false;
/**
* @var bool
*/
protected $outdatedCore = false;
/**
* @var int
*/
protected $insecureExtensions = 0;
/**
* @var int
*/
protected $outdatedExtensions = 0;
/**
* @var string
*/
protected $errorMessage = '';
/**
* @var string
*/
protected $extraInfo = '';
/**
* @var string
*/
protected $extraWarning = '';
/**
* @var string
*/
protected $extraDanger = '';
/**
* @var \DateTime
*/
protected $lastSuccessfulImport = null;
/**
* @var \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\T3Monitor\T3monitoring\Domain\Model\Extension>
* @TYPO3\CMS\Extbase\Annotation\ORM\Lazy
*/
protected $extensions = null;
/**
* @var \T3Monitor\T3monitoring\Domain\Model\Core
* @TYPO3\CMS\Extbase\Annotation\ORM\Lazy
*/
protected $core = null;
/**
* @var \T3Monitor\T3monitoring\Domain\Model\Sla
* @TYPO3\CMS\Extbase\Annotation\ORM\Lazy
*/
protected $sla = null;
/**
* @var \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\T3Monitor\T3monitoring\Domain\Model\Tag>
* @TYPO3\CMS\Extbase\Annotation\ORM\Lazy
*/
protected $tag = null;
/**
* __construct
*/
public function __construct()
{
// Do not remove the next line: It would break the functionality
$this->initStorageObjects();
}
/**
* Initializes all ObjectStorage properties
* Do not modify this method!
* It will be rewritten on each save in the extension builder
* You may modify the constructor of this class instead
*
* @return void
*/
protected function initStorageObjects()
{
$this->extensions = new ObjectStorage();
}
/**
* Returns the title
*
* @return string
*/
public function getTitle()
{
return $this->title;
}
/**
* Sets the title
*
* @param string $title
* @return void
*/
public function setTitle($title)
{
$this->title = $title;
}
/**
* Returns the domain
*
* @return string
*/
public function getDomain()
{
return $this->domain;
}
/**
* Sets the domain
*
* @param string $domain
* @return void
*/
public function setDomain($domain)
{
$this->domain = $domain;
}
/**
* @return string
*/
public function getBasicAuthUsername()
{
return $this->basicAuthUsername;
}
/**
* @param string $basicAuthUsername
*/
public function setBasicAuthUsername($basicAuthUsername)
{
$this->basicAuthUsername = $basicAuthUsername;
}
/**
* @return string
*/
public function getBasicAuthPassword()
{
return $this->basicAuthPassword;
}
/**
* @param string $basicAuthPassword
*/
public function setBasicAuthPassword($basicAuthPassword)
{
$this->basicAuthPassword = $basicAuthPassword;
}
/**
* @return string
*/
public function getHostHeader()
{
return $this->hostHeader;
}
/**
* @param string $hostHeader
*/
public function setHostHeader(string $hostHeader)
{
$this->hostHeader = $hostHeader;
}
/**
* @return bool
*/
public function isIgnoreCertErrors()
{
return $this->ignoreCertErrors;
}
/**
* @param bool $ignoreCertErrors
*/
public function setIgnoreCertErrors(bool $ignoreCertErrors)
{
$this->ignoreCertErrors = $ignoreCertErrors;
}
/**
* @return string
*/
public function getForceIpResolve()
{
return $this->forceIpResolve;
}
/**
* @param string $forceIpResolve
*/
public function setForceIpResolve(string $forceIpResolve)
{
$this->forceIpResolve = $forceIpResolve;
}
/**
* Returns the secret
*
* @return string
*/
public function getSecret()
{
return $this->secret;
}
/**
* Sets the secret
*
* @param string $secret
* @return void
*/
public function setSecret($secret)
{
$this->secret = $secret;
}
/**
* Returns the email
*
* @return string
*/
public function getEmail()
{
return $this->email;
}
/**
* Sets the email
*
* @param string $email
* @return void
*/
public function setEmail($email)
{
$this->email = $email;
}
/**
* Returns the phpVersion
*
* @return string
*/
public function getPhpVersion()
{
return $this->phpVersion;
}
/**
* Sets the phpVersion
*
* @param string $phpVersion
* @return void
*/
public function setPhpVersion($phpVersion)
{
$this->phpVersion = $phpVersion;
}
/**
* Returns the mysqlVersion
*
* @return string
*/
public function getMysqlVersion()
{
return $this->mysqlVersion;
}
/**
* Sets the mysqlVersion
*
* @param string $mysqlVersion
* @return void
*/
public function setMysqlVersion($mysqlVersion)
{
$this->mysqlVersion = $mysqlVersion;
}
/**
* Returns the diskFreeSpace
*
* @return int
*/
public function getDiskFreeSpace()
{
return $this->diskFreeSpace;
}
/**
* Sets the diskFreeSpace
*
* @param int $diskFreeSpace
* @return void
*/
public function setDiskFreeSpace($diskFreeSpace)
{
$this->diskFreeSpace = $diskFreeSpace;
}
/**
* Returns the diskTotalSpace
*
* @return int
*/
public function getDiskTotalSpace()
{
return $this->diskTotalSpace;
}
/**
* Sets the diskTotalSpace
*
* @param int $diskTotalSpace
* @return void
*/
public function setDiskTotalSpace($diskTotalSpace)
{
$this->diskTotalSpace = $diskTotalSpace;
}
/**
* Returns the insecureCore
*
* @return bool
*/
public function getInsecureCore()
{
return $this->insecureCore;
}
/**
* Sets the insecureCore
*
* @param bool $insecureCore
* @return void
*/
public function setInsecureCore($insecureCore)
{
$this->insecureCore = $insecureCore;
}
/**
* Returns the boolean state of insecureCore
*
* @return bool
*/
public function isInsecureCore()
{
return $this->insecureCore;
}
/**
* Returns the outdatedCore
*
* @return bool
*/
public function getOutdatedCore()
{
return $this->outdatedCore;
}
/**
* Sets the outdatedCore
*
* @param bool $outdatedCore
* @return void
*/
public function setOutdatedCore($outdatedCore)
{
$this->outdatedCore = $outdatedCore;
}
/**
* Returns the boolean state of outdatedCore
*
* @return bool
*/
public function isOutdatedCore()
{
return $this->outdatedCore;
}
/**
* Returns the insecureExtensions
*
* @return int
*/
public function getInsecureExtensions()
{
return $this->insecureExtensions;
}
/**
* Sets the insecureExtensions
*
* @param int $insecureExtensions
* @return void
*/
public function setInsecureExtensions($insecureExtensions)
{
$this->insecureExtensions = $insecureExtensions;
}
/**
* Returns the outdatedExtensions
*
* @return int
*/
public function getOutdatedExtensions()
{
return $this->outdatedExtensions;
}
/**
* Sets the outdatedExtensions
*
* @param int $outdatedExtensions
* @return void
*/
public function setOutdatedExtensions($outdatedExtensions)
{
$this->outdatedExtensions = $outdatedExtensions;
}
/**
* Returns the errorMessage
*
* @return string
*/
public function getErrorMessage()
{
return $this->errorMessage;
}
/**
* Sets the errorMessage
*
* @param string $errorMessage
* @return void
*/
public function setErrorMessage($errorMessage)
{
$this->errorMessage = $errorMessage;
}
/**
* Returns the extraInfo
*
* @return string
*/
public function getExtraInfo()
{
return $this->extraInfo;
}
/**
* Sets the extraInfo
*
* @param string $extraInfo
* @return void
*/
public function setExtraInfo($extraInfo)
{
$this->extraInfo = $extraInfo;
}
/**
* Returns the extraWarning
*
* @return string
*/
public function getExtraWarning()
{
return $this->extraWarning;
}
/**
* Sets the extraWarning
*
* @param string $extraWarning
* @return void
*/
public function setExtraWarning($extraWarning)
{
$this->extraWarning = $extraWarning;
}
/**
* Returns the extraDanger
*
* @return string
*/
public function getExtraDanger()
{
return $this->extraDanger;
}
/**
* Sets the extraDanger
*
* @param string $extraDanger
* @return void
*/
public function setExtraDanger($extraDanger)
{
$this->extraDanger = $extraDanger;
}
/**
* Returns the lastSuccessfulImport
*
* @return \DateTime
*/
public function getLastSuccessfulImport()
{
return $this->lastSuccessfulImport;
}
/**
* Sets the lastSuccessfulImport
*
* @param \DateTime $lastSuccessfulImport
* @return void
*/
public function setLastSuccessfulImport(\DateTime $lastSuccessfulImport)
{
$this->lastSuccessfulImport = $lastSuccessfulImport;
}
/**
* Adds a Extension
*
* @param \T3Monitor\T3monitoring\Domain\Model\Extension $extension
* @return void
*/
public function addExtension(Extension $extension)
{
$this->extensions->attach($extension);
}
/**
* Removes a Extension
*
* @param \T3Monitor\T3monitoring\Domain\Model\Extension $extensionToRemove The Extension to be removed
* @return void
*/
public function removeExtension(Extension $extensionToRemove)
{
$this->extensions->detach($extensionToRemove);
}
/**
* Returns the extensions
*
* @return \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\T3Monitor\T3monitoring\Domain\Model\Extension>
*/
public function getExtensions()
{
return $this->extensions instanceof LazyLoadingProxy ? $this->extensions->_loadRealInstance() : $this->extensions;
}
/**
* Sets the extensions
*
* @param \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\T3Monitor\T3monitoring\Domain\Model\Extension> $extensions
* @return void
*/
public function setExtensions(ObjectStorage $extensions)
{
$this->extensions = $extensions;
}
/**
* Returns the core
*
* @return \T3Monitor\T3monitoring\Domain\Model\Core
*/
public function getCore()
{
return $this->core instanceof LazyLoadingProxy ? $this->core->_loadRealInstance() : $this->core;
}
/**
* Sets the core
*
* @param \T3Monitor\T3monitoring\Domain\Model\Core $core
* @return void
*/
public function setCore(Core $core)
{
$this->core = $core;
}
/**
* Returns the sla
*
* @return \T3Monitor\T3monitoring\Domain\Model\Sla
*/
public function getSla()
{
return $this->sla instanceof LazyLoadingProxy ? $this->sla->_loadRealInstance() : $this->sla;
}
/**
* Sets the sla
*
* @param \T3Monitor\T3monitoring\Domain\Model\Sla $sla
* @return void
*/
public function setSla(Sla $sla)
{
$this->sla = $sla;
}
/**
* Returns the tag
*
* @return \T3Monitor\T3monitoring\Domain\Model\Tag
*/
public function getTag()
{
return $this->tag instanceof LazyLoadingProxy ? $this->tag->_loadRealInstance() : $this->tag;
}
/**
* Sets the tag
*
* @param \T3Monitor\T3monitoring\Domain\Model\Tag $tag
* @return void
*/
public function setTag(Tag $tag)
{
$this->tag = $tag;
}
/**
* @return array
*/
public function getExtraInfoAsArray()
{
if (!empty($this->extraInfo)) {
return json_decode($this->extraInfo, true);
}
return [];
}
/**
* @return array
*/
public function getExtraWarningAsArray()
{
if (!empty($this->extraWarning)) {
return json_decode($this->extraWarning, true);
}
return [];
}
/**
* @return array
*/
public function getExtraDangerAsArray()
{
if (!empty($this->extraDanger)) {
return json_decode($this->extraDanger, true);
}
return [];
}
/**
* Return the overall task status for a client.
*
* @return int
*/
public function getTaskStatus(): int
{
$objectManager = GeneralUtility::makeInstance(ObjectManager::class);
$taskRepository = $objectManager->get(TaskRepository::class);
return $taskRepository->getTaskStatusForClientId($this->uid);
}
}