はじめるまえに
- Webサーバーが動作すること
- データベースサーバーが動作すること(XAMPPなどで大丈夫です。)
- CakePHPの基本を知っていること。book.cakephp.orgなどで得られます
アプリケーションの動作
与えられたキーワードで検索し、見つかったツイートをデータベースに格納します。
はじめましょう
1. 最新のCakePHP1.3系を入手し、(Webサーバーの)ドキュメントルートに配置する。以下のようになります。
/caketweet
/app
/cake
/docs
/vendors
.htaccess
index.php
2. /app/config/core.php のカスタマイズと、/app/tmp フォルダに書き込み権限を与えることをお忘れなく。 (chmod -R 777 app/tmp)
3. ツイッターデータソースをここから入手して、/app/models/datasources に配置する。
セットアップ
1. データベースを作成。
01 | CREATE DATABASE `caketweet`; |
03 | CREATE TABLE IF NOT EXISTS `tweets` ( |
04 | `id` int (11) NOT NULL auto_increment, |
05 | `twitter_username` varchar (255) NOT NULL , |
06 | `tweet_content` text NOT NULL , |
07 | `created` datetime default NULL , |
08 | `updated` datetime default NULL , |
2. /app/config/database.phpを編集。
例:
02 | class DATABASE_CONFIG { |
05 | 'persistent' => false, |
06 | 'host' => 'localhost' , |
08 | 'password' => 'password' , |
09 | 'database' => 'caketweet' , |
13 | 'datasource' => 'twitter' , |
14 | 'username' => 'your_twitter_username' , |
15 | 'password' => 'your_twitter_password' , |
MVC
1. tweetモデルを作成。
/app/models/tweet.php:
2 | class Tweet extends AppModel { |
2. tweetsコントローラを作成。
/app/controllers/tweets_controller.php
02 | class TweetsController extends AppController { |
06 | $this ->set( 'tweets' , $this ->paginate()); |
09 | if (! empty ( $this ->data[ 'Tweet' ][ 'keyword' ])){ |
10 | $this ->Twitter = ConnectionManager::getDataSource( 'twitter' ); |
11 | $search_results = $this ->Twitter->search( $this ->data[ 'Tweet' ][ 'keyword' ], 'all' , 5); |
13 | foreach ( $search_results [ 'Feed' ][ 'Entry' ] as $rawtweet ){ |
15 | $i = explode ( ' ' , $rawtweet [ 'Author' ][ 'name' ]); |
16 | $tweet [ 'Tweet' ][ 'twitter_username' ] = $i [0]; |
17 | $tweet [ 'Tweet' ][ 'tweet_content' ] = $rawtweet [ 'content' ][ 'value' ]; |
18 | $tweet [ 'Tweet' ][ 'created' ] = date ( 'Y-m-d H:i:s' , strtotime ( $rawtweet [ 'published' ])); |
19 | $tweet [ 'Tweet' ][ 'updated' ] = date ( 'Y-m-d H:i:s' , strtotime ( $rawtweet [ 'updated' ])); |
21 | $this ->Tweet->create(); |
22 | $this ->Tweet->save( $tweet ); |
24 | $this ->Session->setFlash(__( 'Got tweets.' , true)); |
3. ビューを作成。
/app/views/tweets/index.ctp:
01 | <div class = "tweets index" > |
02 | <h2><?php __( 'Tweets' );?></h2> |
03 | <table cellpadding= "0" cellspacing= "0" > |
05 | <th><?php echo $paginator ->sort( 'id' );?></th> |
06 | <th><?php echo $paginator ->sort( 'twitter_username' );?></th> |
07 | <th><?php echo $paginator ->sort( 'tweet_content' );?></th> |
08 | <th><?php echo $paginator ->sort( 'created' );?></th> |
09 | <th class = "actions" ><?php __( 'Actions' );?></th> |
13 | foreach ( $tweets as $tweet ): |
16 | $class = ' class="altrow"' ; |
19 | <tr<?php echo $class ;?>> |
21 | <?php echo $tweet [ 'Tweet' ][ 'id' ]; ?> |
24 | <?php echo $tweet [ 'Tweet' ][ 'twitter_username' ]; ?> |
27 | <?php echo $tweet [ 'Tweet' ][ 'tweet_content' ]; ?> |
30 | <?php echo $tweet [ 'Tweet' ][ 'created' ]; ?> |
33 | <?php echo $html ->link(__( 'Delete' , true), array ( 'action' => 'delete' , $tweet [ 'Tweet' ][ 'id' ]), null, sprintf(__( 'Are you sure you want to delete # %s?' , true), $tweet [ 'Tweet' ][ 'id' ])); ?> |
40 | <?php echo $paginator ->prev( '«' .__( 'prev' , true), array ( 'escape' => false), null, array ( 'class' => 'disabled' , 'escape' => false));?> |
41 | | <?php echo $paginator ->numbers();?> |
42 | <?php echo $paginator ->next(__( 'next' , true). ' »' , array ( 'escape' => false), null, array ( 'class' => 'disabled' , 'escape' => false));?> |
46 | <li><?php echo $html ->link(__( 'Search tweets' , true), array ( 'action' => 'search' )); ?></li> |
/app/views/tweets/search.ctp:
01 | <div class = "tweets form" > |
02 | <?php echo $form ->create( 'Tweet' , array ( 'action' => 'search' ));?> |
04 | <legend><?php __( 'Search tweet' );?></legend> |
06 | echo $form ->input( 'keyword' ); |
09 | <?php echo $form -> end ( 'Search' );?> |
13 | <li><?php echo $html ->link(__( 'List tweets' , true), array ( 'action' => 'index' ));?></li> |
ここで http://yourhost/caketweet/tweets/search にアクセスし、キーワードを入力して検索してみましょう。
おわりに
お気づきと思いますが、これらはアプリケーションの全体からは程遠く、ほんのさわりにすぎません。他に何ができるかについてはtwitter datasource内のメソッドを確認してください。