-
-
Notifications
You must be signed in to change notification settings - Fork 177
/
Copy pathFirebaseProject.php
116 lines (86 loc) · 2.61 KB
/
FirebaseProject.php
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
<?php
declare(strict_types=1);
namespace Kreait\Laravel\Firebase;
use Kreait\Firebase\Contract\AppCheck;
use Kreait\Firebase\Contract\Auth;
use Kreait\Firebase\Contract\Database;
use Kreait\Firebase\Contract\DynamicLinks;
use Kreait\Firebase\Contract\Firestore;
use Kreait\Firebase\Contract\Messaging;
use Kreait\Firebase\Contract\RemoteConfig;
use Kreait\Firebase\Contract\Storage;
use Kreait\Firebase\Factory;
class FirebaseProject
{
protected Factory $factory;
protected array $config;
protected ?AppCheck $appCheck = null;
protected ?Auth $auth = null;
protected ?Database $database = null;
protected ?DynamicLinks $dynamicLinks = null;
protected ?Firestore $firestore = null;
protected ?Messaging $messaging = null;
protected ?RemoteConfig $remoteConfig = null;
protected ?Storage $storage = null;
public function __construct(Factory $factory, array $config)
{
$this->factory = $factory;
$this->config = $config;
}
public function appCheck(): AppCheck
{
if (! $this->appCheck) {
$this->appCheck = $this->factory->createAppCheck();
}
return $this->appCheck;
}
public function auth(): Auth
{
if (! $this->auth) {
$this->auth = $this->factory->createAuth();
}
return $this->auth;
}
public function database(): Database
{
if (! $this->database) {
$this->database = $this->factory->createDatabase();
}
return $this->database;
}
public function dynamicLinks(): DynamicLinks
{
if (! $this->dynamicLinks) {
$this->dynamicLinks = $this->factory->createDynamicLinksService($this->config['dynamic_links']['default_domain'] ?? null);
}
return $this->dynamicLinks;
}
public function firestore(): Firestore
{
if (! $this->firestore) {
$this->firestore = $this->factory->createFirestore();
}
return $this->firestore; // @codeCoverageIgnore
}
public function messaging(): Messaging
{
if (! $this->messaging) {
$this->messaging = $this->factory->createMessaging();
}
return $this->messaging;
}
public function remoteConfig(): RemoteConfig
{
if (! $this->remoteConfig) {
$this->remoteConfig = $this->factory->createRemoteConfig();
}
return $this->remoteConfig;
}
public function storage(): Storage
{
if (! $this->storage) {
$this->storage = $this->factory->createStorage();
}
return $this->storage;
}
}