创建Drupal服务模块?

时间:2011-12-09 23:11:47

标签: php flash actionscript-3 drupal-7 drupal-modules

目前,我正在尝试使用Flash客户端连接到自定义构建的Drupal 7服务模块。我可以正确连接到我的amfserver服务,并实际使用Node服务来获取和操作节点。我正在尝试构建一个自定义服务来远程提供可用服务未提供的功能。我正在尝试整合一个简单的框架,以便在我的服务模块和服务器之间进行通信。我遇到了很多问题,因为我不知道如何正确地构建服务,而且我发现的大部分信息都无法正常运行。目前,我可以确认我的Flash应用程序正在连接到模块,但模块返回NULL。我认为它可能很简单,但我不太熟悉php并使用Drupal API,所以任何帮助都会很好。这是我目前为该模块提供的代码。

<?php
// mrbremoteresource.module
/**
 * Implements hook_perm().
 */
function mrbremoteresourse_perm() {
    return array(
        'mrbremote resource search',
    );
}

/**
 * Perform a search node ID.
 *
 * @param string $id
 *  Node ID to lookup
 * @return object
 */
function mrbremoteresource_search($id) {
    $nodes = array();
    $result = db_query("SELECT title FROM {node} WHERE nid=:id", array(':id' => $id));
    $res = $result->fetchObject();
    foreach ($res as $node) {
        $nodes[] = $node;
    }
    return $nodes;
}
/**
 * Implements hook_services_resources().
 */
function mrbremoteresource_services_resources() {
  return array(
    'mrbremote' => array(
       'search' => array(
         'help' => 'Retrieve a node',
         'file' => array('file' => 'inc', 'module' => 'mrbremoteresource'),
         'callback' => '_mrbremoteresource_find',
         'access callback' => '_mrbremoteresource_access',
         'access arguments' => array('view'),
         'access arguments append' => TRUE,
          'args' => array(
           array(
             'name' => 'id',
             'type' => 'int',
             'description' => 'The id of the node to get',
             'source' => array('path' => '0'),
             'optional' => FALSE,
            ),
        ),
      ),
     ),
    );
     }

/**
 * Access callback for the node resource.
 *
 * @param string $op
 *  The operation that's going to be performed.
 * @param array $args
 *  The arguments that will be passed to the callback.
 * @return bool
 *  Whether access is given or not.
 */
function _mrbremoteresource_access($op, $args) {
  global $user;
  $access = FALSE;

  switch ($op) {
    case 'view':
      $node = mrbremoteresource_search($args[0]);
      $access = user_access('this resource view any node');
      $access = $access || $note->uid == $user->uid && user_access('this resource view own nodes');
      break;
  }

  // Force access for debugging
  $access = TRUE;
  return $access;
}?>



<?php
    // noteresource.inc
    /**
     * Callback for retrieving note resources.
     *
     * @param string $id
     *  Node ID to lookup
     * @return object
     */
    function _mrbremoteresource_find($id) {
      return mrbremoteresoure_search($id);
    }
?>

我使用来自Drupal API Documentation的信息来尝试实现这一目标,但到目前为止还没有成功。什么是让这个工作的最好方法?

编辑:我正在从一个简单的Flash客户端添加代码。我实际上是想在另一个应用程序中使用它,但我只是将这个小应用程序放在一起,所以我可以用它进行调试。

<?xml version="1.0" encoding="utf-8"?.>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
           xmlns:s="library://ns.adobe.com/flex/spark" 
           xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"
           initialize="init();">
<fx:Script>
    <![CDATA[
        public function init():void {
            remNode.search("1")
        }
        public function onResult(responds:Object):void {
            trace(responds);
        }
        public function onFault(responds:Object):void {
            trace(responds);
        } 
    ]]>
</fx:Script>

<fx:Declarations>
    <s:RemoteObject endpoint="http://localhost/drupal/remmirecipebox"
                    destination="amfserver"
                    source="mrbremote"
                    id="remNode"
                    showBusyCursor="true">
        <s:method name="search" result="onResult(event)" fault="onFault(event)"/>
    </s:RemoteObject>
</fx:Declarations> </s:Application>

在顶部的xml标签中我只是放了一个。在。。之间 ?并且&gt;因为它一直在削减我的代码。它不在实际的应用程序代码中。

0 个答案:

没有答案