Skip to content

boskee/EndroidOpenWeatherMapBundle

Repository files navigation

Endroid OpenWeatherMap Bundle

By endroid

Build Status Latest Stable Version Total Downloads

This bundle enables you to use Endroid OpenWeatherMap as a service in your Symfony project. It also provides an API controller that takes a local API request, adds the API key (APPID) to it and returns the corresponding OpenWeatherMap API response. This enables you to expose the OpenWeatherMap API on your own domain without having to bother about passing your API key on every request and creating a new instance each time you make a request.

For more information see the endroid/OpenWeatherMap repository and the OpenWeatherMap API.

knpbundles.com

Requirements

Installation

Add in your composer.json

{
    "require": {
        "endroid/openweathermap-bundle": "dev-master"
    }
}

Install the bundle

$ curl -s http://getcomposer.org/installer | php
$ php composer.phar update endroid/openweathermap-bundle

Composer will install the bundle to your project's vendor/endroid directory.

Enable the bundle via the kernel

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Endroid\Bundle\OpenWeatherMapBundle\EndroidOpenWeatherMapBundle(),
    );
}

Configuration

config.yml

endroid_open_weather_map:
    api_key: "..."
    api_url: "..." // optional
    units: "..." // optional

Routing

If you don't want to expose the OpenWeatherMap API via your application, you can skip this section.

EndroidOpenWeatherMapBundle:
    resource:	"@EndroidOpenWeatherMapBundle/Controller/"
    type:		annotation
    prefix:		/openweathermap/api

This exposes the OpenWeatherMap API via /openweathermap/api. This means that instead of sending a request to http://api.openweathermap.org/ you can now send an unsigned request to /openweathermap/api/*. Make sure you secure this area if you don't want others to be able to post on your behalf.

Usage

After installation and configuration, the service can be directly referenced from within your controllers.

<?php

$openWeatherMap = $this->get('endroid.openweathermap');

// Retrieve the current weather for Breda
$weather = $openWeatherMap->getWeather('Breda,nl');

// Or retrieve the weather using the generic query method
$response = $openWeatherMap->query('weather', array('q' => 'Breda,nl'));
$weather = json_decode($response->getContent());

License

This bundle is under the MIT license. For the full copyright and license information, please view the LICENSE file that was distributed with this source code.

About

Endroid OpenWeatherMap Bundle

Resources

License

Stars

Watchers

Forks

Packages

No packages published