GithubHelp home page GithubHelp logo

pekeq / cakephp-amazon-aws-sdk Goto Github PK

View Code? Open in Web Editor NEW

This project forked from joebeeson/amazon

5.0 2.0 2.0 2.16 MB

A (very) thin veil over Amazon's AWS SDK for PHP for CakePHP 2.x applications.

PHP 100.00%

cakephp-amazon-aws-sdk's Introduction

Amazon Plugin for CakePHP 2.0+

This plugin is a (very) thin veil over Amazon's AWS SDK for PHP for use in CakePHP controllers. Forked from http://github.com/joebeeson/amazon for CakePHP 1.3+

Installation

  • Download the plugin

      $ cd /path/to/your/app/plugins && git clone git://github.com/mcallisto/cakephp_amazon_aws_sdk.git
    
  • Add the component to a controller

      public $components = array('Amazonsdk.Amazon');
    

Configuration

You must populate the following two lines in your /app/Plugin/Amazonsdk/Config/amazon.php file.

	'key' => 'YOUR_KEY',
	'secret' => 'YOUR_SECRET'

Don't forget to replace the placeholder text with your actual keys!

Usage

At this point you have access to all of the methods available from the AWS SDK. The library currently has support for the following services:

  • Amazon CloudFront
  • Amazon CloudWatch
  • Amazon DynamoDB
  • Amazon ElastiCache
  • Amazon Elastic Compute Cloud (Amazon EC2)
  • Amazon Elastic MapReduce
  • Amazon Relational Database Service (Amazon RDS)
  • Amazon Simple Notification Service (Amazon SNS)
  • Amazon Simple Queue Service (Amazon SQS)
  • Amazon Simple Storage Service (Amazon S3)
  • Amazon Simple Workflow Service
  • Amazon SimpleDB
  • Amazon Simple Email Service
  • Amazon Virtual Private Cloud (Amazon VPC)
  • Auto Scaling
  • AWS CloudFormation
  • AWS Elastic Beanstalk
  • AWS Import/Export
  • AWS Identity and Access Management
  • Elastic Load Balancing

Not all of the methods for each service has been thoroughly tested. If you run into any issues, feel free to open an issue here, on the repository.

The specific objects for each service can be accessed through the component as a member of it. Here are some examples:

  • $this->Amazon->SNS
  • $this->Amazon->AutoScale
  • $this->Amazon->CloudFront
  • $this->Amazon->CloudWatch
  • $this->Amazon->EC2
  • $this->Amazon->ELB
  • $this->Amazon->RDS
  • $this->Amazon->EMR
  • $this->Amazon->SDB
  • $this->Amazon->SQS

Example

To publish to the Simple Notification Service the method to use is called publish -- here is an example:

	$this->Amazon->SNS->publish('arn:aws:sns:us-east-1:567053558973:foo', 'This is the message to publish');

To lookup any EC2 instances, we can do the following:

	$response = $this->Amazon->EC2->describe_instances();

Lets say we wanted to upload a file to S3:

	$this->Amazon->S3->create_object(
		'our_bucket',
		'filename.jpg',
		array(
			'fileUpload' => '/tmp/image.jpg',
			'acl' => AmazonS3::ACL_PUBLIC
		)
	);

Notes

Almost all of the methods that can be performed against a service will return a CFResponse object. The plugin makes no attempt to translate this into anything other than an object since the response is directly generated from the API response. For more information on the CFResponse object click here

cakephp-amazon-aws-sdk's People

Contributors

joebeeson avatar mcallisto avatar pekeq avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

pocake rmamba

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.