-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComponentStorage.php
More file actions
49 lines (41 loc) · 1.21 KB
/
ComponentStorage.php
File metadata and controls
49 lines (41 loc) · 1.21 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
<?php
declare(strict_types=1);
namespace ConduitIo\Core\Services;
use ConduitIo\Core\Models\Component;
use ConduitIo\Core\Contracts\ComponentInterface;
use Illuminate\Support\Collection;
class ComponentStorage
{
public function store(ComponentInterface $component): Component
{
return Component::updateOrCreate(
['name' => $component->getName()],
[
'package_name' => $component->getName(),
'version' => $component->getVersion(),
'description' => $component->getDescription(),
'metadata' => $component->getMetadata(),
'status' => 'installed',
'installed_at' => now()
]
);
}
public function remove(string $name): bool
{
return Component::where('name', $name)->delete() > 0;
}
public function get(string $name): ?Component
{
return Component::where('name', $name)->first();
}
public function all(): Collection
{
return Component::all();
}
public function isInstalled(string $name): bool
{
return Component::where('name', $name)
->where('status', 'installed')
->exists();
}
}