Codeigniter:自动连接到Neo4J数据库

时间:2016-07-05 11:22:00

标签: php database codeigniter neo4j graphaware

我一直在我的个人项目中使用codeigniter 2.x.数据库是MySql,但我决定转到Neo4J。

我使用了已安装的GraphAware库。到目前为止,它按预期运行。我的测试代码如下:

$user       = 'neo4j';
$password   = 'mypass';
$host       = 'myhost:7474';
$myDB       = 'mydb';

$client = ClientBuilder::create()
        ->addConnection('default','http://'.$user.':'.$password.'@'.$host.'/'.$myDB)
        ->build();

$query = "MATCH (n:user) RETURN n.username";

$result = $client->run($query);

到目前为止一切顺利!

我的问题如下:如何在创建页面时自动连接到neo4j数据库,以便不必每次都手动创建连接?

在我看来,上面的代码会变成这样:

$db = $this->db->load('neo4j');

$query = "MATCH (n:user) RETURN n.username";

$result = $db->run($query);

我一直在使用codeigniter进行搜索,由于缺乏对某些核心概念的理解,我似乎无法找到解决方案。

你知道如何继续。

感谢。

卢瓦克。

1 个答案:

答案 0 :(得分:0)

我的目标是在每次加载页面时自动连接到Neo4J数据库,而不是每次我想访问它时都不必手动连接到数据库。我还关注不修改任何codeigniter系统文件。

修改更新了解决方案。我的第一个解决方案是有问题的,因为它需要模型调用控制器来获取DB对象。这是不切实际的,并且违反了MVC工作流程,在那里它是应该调用模型的控制器,而不是相反。

更新解决方案:

对于这个解决方案,我们需要创建两件事:

  • 新的图书馆类
  • 新控制器类

此外,可选但建议

  • 修改配置文件并插入数据库详细信息和凭据

1)在应用程序/库中创建一个新的库类

我们想要创建一个库类,它将由我们的新控制器加载和初始化,然后由我们的模型访问。

这个库只包含2个函数:

  • connect():执行与数据库的连接,并将数据库对象保存在私有类变量$ neo4j中。
  • get_db():返回函数 connect()
  • 中保存的数据库对象

<强>应用/库/ neo4j.php

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); 
require_once 'vendor/autoload.php';
use GraphAware\Neo4j\Client\ClientBuilder;

class Neo4j {
    private $neo4j;

    //connect to the neo4j database
    public function connect(){
        //load CI to access config files 
        $CI = & get_instance();

        //Get database details from the config file.
        $user       = $CI->config->item('username');
        $password   = $CI->config->item('password');
        $host       = $CI->config->item('hostname');
        $port       = $CI->config->item('port');
        $database   = $CI->config->item('database');

        //build connection to db
        $client = ClientBuilder::create()
                ->addConnection('default', 'http://'.$user.':'.$password.'@'.$host.':'.$port)
                ->build();

        //save the connection object in a private class variable
        $this->neo4j    = $client;
    }

    //Returns the connection object to the neo4j database
    public function get_db(){
        return $this->neo4j;
    }
}

2)创建一个新的控制器,它将加载我们的neo4j库并执行数据库连接。

这一步也简单明了。我们创建了一个新的控制器,它将扩展当前控制器类的任何内容。我把这个控制器称为 Neo4j_controller

此控制器仅包含构造函数。我们真正想做的就是加载我们的neo4j库并启动数据库连接。

<强>应用/核心/ Neo4j_controller.php

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Neo4j_controller extends TNK_Controller{

    //connect to neo4j db on instantiation
    function __construct(){
        parent::__construct();
        //load the neo4j library that we created
        $this->load->library('neo4j');
        //connect to the db
        $this->neo4j->connect();
    }
}

3)在您的模型中,您现在可以访问数据库对象并使用它来执行查询。

来自我的某个模特的示例

//Return all sublists of list $list
    public function get_sublists($list){
        //Get the DB object by calling the get_db function from our neo4j library.
        //Since the neo4j library has been loaded by the controller, we can access it
        //by just calling $this->neo4j.
        $db = $this->neo4j->get_db();

        //Write your cypher query
        $query = "match (n:item_list{name:'$list'})-[:sublist*]->(sublist:item_list) sublist.name as list";

        //Run your query
        $result = $db->run($query);

        //Return the result. In this case, i call a function (extract_result_g)
        //that will neatly transform the response into a nice array.
        return $this->extract_results_g($result);   
    }

4)修改配置文件 (可选)

我遇到了问题。最后,我创建了自己的配置文件neo4jDatabase.php。

如果您在创建自己的配置文件或修改当前配置文件时也遇到问题,您仍然可以在neo4j库文件中对数据库数据进行硬编码。这是不好的做法,但是当它必须工作时,它必须工作。

<强> neo4jDatabase.php

<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');

$config['hostname'] = 'test.mysite.me';
$config['username'] = 'neo4j';
$config['password'] = 'my_password';
$config['database'] = 'mygraphdb';
$config['port']     = '7474';

/* End of file neo4jDatabase.php */
/* Location: ./application/config/neo4jDatabase.php */

这样就完成了更新的解决方案。另请注意,我使用的是 codeIgniter HMVC 。所以我不知道我所做的一些事情是否只有这样才能实现(比如从模型中调用一个库)。

请在下面找到旧的解决方案。不应该使用它。

旧解决方案 (有问题,因为它需要您的模型来调用您的控制器。这不是应该发生的事情)

对于这个解决方案,我只需创建一个新的Controller,需要由任何希望使用Neo4j数据库的控制器实例化。

1)我们创建一个新控制器(此处称为Neo4j_controller)

新控制器:Neo4j_controller.php

require_once 'vendor/autoload.php';
use GraphAware\Neo4j\Client\ClientBuilder;

class Neo4j_controller extends Your_Normal_Controller{

    private $neo4j;

    //connect to db on instantiation
    function __construct(){
        parent::__construct();

        $this->connect();
    }

    //Connect to the neo4j db
    private function connect(){
       //I'll get these from config file later on
       $user       = 'neo4j';
       $password   = 'mypass';
       $host       = 'myhost:7474';
       $myDB       = 'mydb';

       //build connect to db 
       $client = ClientBuilder::create()
                ->addConnection('default', 'http://'.$user.':'.$password.'@'.$host.'/'.$myDB)
                ->build();
        //save the connection object in a private class variable
        $this->neo4j    = $client;
    }

    //Returns the connection object to the neo4j database
    public function get_db(){
        return $this->neo4j;
    }
}

2)让您的普通控制器实例化Neo4j_controller

class Test extends Neo4j_controller {...}

3)在您的控制器(此处称为Test)中,创建一个函数,您将在其中:

  • 通过调用$ this-&gt; get_db()

  • 获取数据库对象
  • 使用该对象执行查询

在我们的Test控制器中创建的函数,它向neo4j数据库发送查询

public function db_query(){

    $db = $this->get_db();

    $query = "match (n:user) return n";

    print_r($db->run($query)->getRecords());
  }

当你调用函数db_query时,它会返回用户节点,而不需要我们手动编写任何代码来连接到neo4j数据库。

卢瓦克。