CakePHP アプリケーションにカスタム データソースを実装しています。データソース ( read()
、listSources()
、describe()
) の基本的な関数を実装しました。データソースは Xml を入力として使用し、Xml で find('neighbors') を使用したいのですが、Cake がこの機能を「自動的に」実装するかどうか (read()
関数が存在するため)、または何らかの形でデータソースを拡張する必要があるかどうか疑問に思っていました。 . 私はまだ具体的な例を見つけていないので、SO コミュニティが助けてくれることを願っています。
以下は、現在のデータソースの実装です。
<?php
App::import('Core', 'Xml');
class AppdataSource extends DataSource {
protected $_schema = array(
'apps' => array(
'id' => array(
'type' => 'integer',
'null' => true,
'key' => 'primary',
'length' => 11,
),
'type' => array(
'type' => 'string',
'null' => true,
'length' => 140
),
'title' => array(
'type' => 'string',
'null' => true,
'length' => 255
),
'subtitle' => array(
'type' => 'string',
'null' => true,
'length' => 255
),
'body' => array(
'type' => 'text',
'null' => true,
),
'date' => array(
'type' => 'date',
'null' => true,
),
)
);
public function listSources() {
return array('apps');
}
public function describe($model) {
return $this->_schema['apps'];
}
function calculate(&$model, $func, $params = array()) {
return '__'.$func;
}
function __getPage($items = null, $queryData = array()) {
if (empty($queryData['limit']) ) {
return $items;
}
$limit = $queryData['limit'];
$page = $queryData['page'];
$offset = $limit * ($page-1);
return array_slice($items, $offset, $limit);
}
function __sortItems(&$model, $items, $order) {
if ( empty($order) || empty($order[0]) ) {
return $items;
}
$sorting = array();
foreach( $order as $orderItem ) {
if ( is_string($orderItem) ) {
$field = $orderItem;
$direction = 'asc';
}
else {
foreach( $orderItem as $field => $direction ) {
continue;
}
}
$field = str_replace($model->alias.'.', '', $field);
$values = Set::extract($items, '{n}.'.$field);
if ( in_array($field, array('lastBuildDate', 'pubDate')) ) {
foreach($values as $i => $value) {
$values[$i] = strtotime($value);
}
}
$sorting[] = $values;
switch(low($direction)) {
case 'asc':
$direction = SORT_ASC;
break;
case 'desc':
$direction = SORT_DESC;
break;
default:
trigger_error('Invalid sorting direction '. low($direction));
}
$sorting[] = $direction;
}
$sorting[] = &$items;
$sorting[] = $direction;
call_user_func_array('array_multisort', $sorting);
return $items;
}
public function read($model, $queryData = array()) {
$feedPath = 'xml/example.xml';
$xml = new Xml($feedPath);
$xml = $xml->toArray();
foreach ($xml['Items']['Item'] as $record) {
$record = array('App' => $record);
$results[] = $record;
}
$results = $this->__getPage($results, $queryData);
//Return item count
if (Set::extract($queryData, 'fields') == '__count' ) {
return array(array($model->alias => array('count' => count($results))));
}
return $results;
}
}
?>
基本的な XML 構造:
<items>
<item id="1">
<type>Type</type>
<title>Title</title>
<subtitle>Subtitle</subtitle>
<date>15-12-2010</date>
<body>Body text</body>
</item>
</items>
編集:
マニュアルをもっと注意深く読むべきだった:
そして、それはほとんどすべてです。このデータソースをモデルに結合することで、通常どおり Model::find()/save() を使用できるようになり、これらのメソッドを呼び出すために使用される適切なデータやパラメーターがデータソース自体に渡されます。ここでは、必要な機能を実装するかどうかを決定できます (たとえば、「条件」解析、「制限」、さらには独自のカスタム パラメータなどの Model::find オプション)。