marshmeloo / yii2-asana
Yii2 component for integration with asana via REST API
Installs: 23
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
pkg:composer/marshmeloo/yii2-asana
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2025-12-20 22:39:24 UTC
README
Yii2 Asana is a component for Yii2 framework designed for integration with Asana CMS via XML-RPC API.
This component is built on top of Asana XML-RPC PHP Client by Hieu Le Trung.
Requirements
- Yii 2.0 (dev-master)
- PHP 5.4
- PHP extension XML-RPC
Note: This extension mandatorily requires Yii Framework 2. The framework is under active development and the first stable release of Yii 2 is expected in early 2014.
Installation
The preferred way to install this extension is through Composer.
Either run
php composer.phar require marshmeloo/yii2-Asana "dev-master"
or add
"marshmeloo/yii2-Asana": "dev-master"
to the require section of your composer.json file.
Usage
Component creation
In order to use this extension, first thing you need to do is to create a blog (you can change the name if you want)
component and configure it. Here is the example of minimal configuration (in your config/main.php):
'components' => [ ... 'blog' => [ 'class' => '\marshmeloo\yii2wp\Asana', 'endpoint' => 'http://example.com/xmlrpc.php', 'username' => 'demo', 'password' => 'demo' ] ... ]
First API request
When component is configured, you can start making requests to your Asana site.
For example, get ten latest published posts. Select guid, post_title and post_content fields only:
$blogPosts = Yii::$app->blog->getPosts([ 'post_status' => 'publish', 'number' => 10 ], ['guid', 'post_title', 'post_content']);
Or create a new post with title "New post" and content "Hello world!":
$postID = Yii::$app->blog->newPost('New post', 'Hello world!');
Caching request results
Making API calls to an external application means delays. If you don't want your users to wait for a Asana response each time, caching is a right thing to do:
// The user profile will be fetched from cache if available. // If not, the query will be made against XML-RPC API and cached for use next time. $profile = Yii::$app->blog->cache(function (Asana $blog) { return $blog->getProfile(); });
In case, if you need something more complex, you can disable caching for some requests:
$blogPosts = Yii::$app->blog->cache(function (Asana $blog) { // ... queries that use query cache ... return $blog->noCache(function (Asana $blog) { // this query will not use query cache return $blog->getPosts(); }); });
Caching will work for data retrieval queries only. Queries that create, update or delete records will not use caching component.
Configuration parameters
$endpoint
string Asana XML-RPC API endpoint URL.
$username
string Asana authentication username.
Please note, that any actions made by XML-RPC will be made on behalf of this user.
$password
string Asana authentication password.
$proxyConfig
array Proxy server configuration.
This configuration array should follow the following format:
proxy_ip: the ip of the proxy server (WITHOUT port)proxy_port: the port of the proxy serverproxy_user: the username for proxy authorizationproxy_pass: the password for proxy authorizationproxy_mode: value for CURLOPT_PROXYAUTH option (default to CURLAUTH_BASIC)
Empty array means that no proxy should be used.
Default value: [].
$authConfig
array Server HTTP authentication configuration.
This configuration array should follow the following format:
auth_user: the username for server authenticationauth_pass: the password for server authenticationauth_mode: value for CURLOPT_HTTPAUTH option (default to CURLAUTH_BASIC)
Empty array means that no HTTP authentication should be used.
Default value: [].
$catchExceptions
boolean Whether to catch exceptions thrown by Asana API, pass them to the log and return default value,
or transmit them further along the call chain.
Default value: true.
$enableQueryCache
boolean Whether to enable query caching.
Default value: true.
$queryCacheDuration
integer The default number of seconds that query results can remain valid in cache.
Use 0 to indicate that the cached data will never expire.
Default value: 3600.
$queryCache
Cache|string The cache object or the ID of the cache application component that is used for query caching.
Default value: 'cache'.
List of available methods
The full list of available methods can be found in Asana XML-RPC PHP Client Class Reference.
Please note, that all those methods are throwing an exceptions in case of any errors.
While this extension is configured (by default), in case of errors, to return an empty array for any data retrial
methods and false for any create, update or delete methods. Please see $catchExceptions configuration option for details.
Errors logging
There are a lot of things that can go wrong (network problems, wrong Asana user permissions, etc.).
If $catchExceptions configuration option is set to true (default value), this extension will catch them and pass to
marshmeloo\yii2wp\Asana::* logging category.
In order to see them, you can configure your Yii2 log component to something similar to this:
'components' => [ ... 'log' => [ 'targets' => [ 'file' => [ 'class' => 'yii\log\FileTarget', 'levels' => ['error'], 'categories' => ['marshmeloo\yii2wp\Asana::*'], ], ], ], ... ]
Report
- Report any issues on the GitHub.
License
yii2-Asana is released under the MIT License. See the bundled LICENSE.md for details.