Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
common_persistence_PhpNeo4jDriver
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 2
6
0.00% covered (danger)
0.00%
0 / 1
 connect
0.00% covered (danger)
0.00%
0 / 6
0.00% covered (danger)
0.00%
0 / 1
2
 getClient
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2023 (original work) Open Assessment Technologies SA ;
19 */
20
21use Laudis\Neo4j\Authentication\Authenticate;
22use Laudis\Neo4j\ClientBuilder;
23use Laudis\Neo4j\Contracts\ClientInterface;
24
25class common_persistence_PhpNeo4jDriver implements common_persistence_Driver
26{
27    private ClientInterface $client;
28
29    public function connect($id, array $params): common_persistence_Persistence
30    {
31        $auth = Authenticate::basic($params['user'], $params['password']);
32
33        $this->client = ClientBuilder::create()
34            ->withDriver('bolt', sprintf('bolt://%s', $params['host']), $auth)
35            ->withDefaultDriver('bolt')
36            ->build();
37
38        return new common_persistence_GraphPersistence($params, $this);
39    }
40
41    public function getClient(): ?ClientInterface
42    {
43        return $this->client;
44    }
45}