Created
December 6, 2013 18:55
-
-
Save eightysteele/7830222 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Global Forest Watch API | |
# Copyright (C) 2013 World Resource Institute | |
# | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 2 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
# GNU General Public License for more details. | |
# | |
# You should have received a copy of the GNU General Public License along | |
# with this program; if not, write to the Free Software Foundation, Inc., | |
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
"""This module supports stories.""" | |
import json | |
from appengine_config import runtime_config | |
from gfw import cdb | |
TABLE = 'stories_dev' if runtime_config.get('IS_DEV') else 'community_stories' | |
INSERT = """INSERT INTO {table} | |
(details, email, featured, name, title, token, visible, date, location, | |
the_geom, media) | |
VALUES | |
('{details!s}', '{email!s}', {featured}::boolean, '{name!s}', '{title!s}', | |
'{token!s}', {visible}::boolean, '{date}'::date, '{location!s}', | |
ST_SetSRID(ST_GeomFromGeoJSON('{geom}'), 4326), '{media}') | |
RETURNING details, email, featured, name, title, visible, date, | |
location, cartodb_id as id, ST_AsGeoJSON(the_geom) as geom, media, token""" | |
LIST = """SELECT details, email, featured, name, title, visible, date, | |
location, cartodb_id as id, ST_AsGeoJSON(the_geom) as geom, media | |
FROM {table} | |
WHERE visible = True {and_where}""" | |
GET = """SELECT details, email, featured, name, title, visible, date, | |
location, cartodb_id as id, ST_AsGeoJSON(the_geom) as geom, media | |
FROM {table} | |
WHERE cartodb_id = {id}""" | |
def _prep_story(story): | |
if 'geom' in story: | |
story['geom'] = json.loads(story['geom']) | |
if 'media' in story: | |
story['media'] = json.loads(story['media']) | |
return story | |
def create(params): | |
"""Create new story with params.""" | |
props = dict(details='', email='', featured='False', name='', | |
title='', token='', visible='True', date='null', | |
location='', geom='', media='[]', table=TABLE) | |
props.update(params) | |
props['geom'] = json.dumps(props['geom']) | |
if 'media' in props: | |
props['media'] = json.dumps(props['media']) | |
return cdb.execute(INSERT.format(**props), api_key=True) | |
def list(params): | |
and_where = '' | |
if 'geom' in params: | |
and_where = """AND ST_Intersects(the_geom::geography, | |
ST_SetSRID(ST_GeomFromGeoJSON('{geom}'),4326)::geography)""" | |
if 'since' in params: | |
and_where += """ AND date >= '{since}'::date""" | |
if and_where: | |
and_where = and_where.format(**params) | |
result = cdb.execute( | |
LIST.format(and_where=and_where, table=TABLE), api_key=True) | |
if result: | |
data = json.loads(result) | |
if 'total_rows' in data and data['total_rows'] > 0: | |
return map(_prep_story, data['rows']) | |
def get(params): | |
params['table'] = TABLE | |
result = cdb.execute(GET.format(**params), api_key=True) | |
if result: | |
data = json.loads(result) | |
if 'total_rows' in data and data['total_rows'] == 1: | |
story = data['rows'][0] | |
return _prep_story(story) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment