akvo/akvo-flow-php-sdk

A PHP Artisan service provider for the Akvo Flow

v1.0.6 2021-06-01 03:13 UTC

This package is auto-updated.

Last update: 2024-03-29 04:12:49 UTC


README

Packagist Contributors Forks Stargazers Issues MIT License


Akvo Flow PHP SDK

This package generates Database Migrations and ORM Models.
Easily to use for developing custom website based on Akvo Flow data.
Report Bug · Request Feature · Request Consultancy

System requirements

You must have the following tools on the command line of your host operating system:

Prerequisites

To quickly install Composer in the current directory, run the following script in your terminal.

  1. Install Composer
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('sha384', 'composer-setup.php') === '8a6138e2a05a8c28539c9f0fb361159823655d7ad2deecb371b04a83966c61223adc522b0189079e3e9e277cd72b8897') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
  1. Create new Laravel Project
composer create-project --prefer-dist laravel/laravel <PROJECT_NAME>

Installation

Create your new Laravel project then add the package to composer.json.

{
    "require": {
        "akvo/akvo-flow-php-sdk": "1.0.*"
    }
}
composer install

or you can also directly run the composer command:

composer require akvo/akvo-flow-php-sdk

Usage

Setup .env file

In your project simply add the following environment variables to start using Akvo Flow API

AKVOFLOW_AUTH_URL='https://akvo.auth0.com/oauth/token'
AKVOFLOW_CLIENT_ID=''
AKVOFLOW_API_URL='https://api-auth0.akvo.org/flow/orgs'
AKVOFLOW_INSTANCE='organisation_subdomain'
AKVOFLOW_USERNAME='youremail@gmail.org'
AKVOFLOW_PASSWORD=''
AKVOFLOW_FORM_URL='https://tech-consultancy.akvo.org/akvo-flow-web-api'
AKVOFLOW_METHOD='fetch' # fetch (using form cache) / update (get latest form), default: update

More details:

Running Commands

To view a list of all available Akvo Flow commands, you may use the list command with php artisan - Laravel Artisan.

  • akvo:migrate, Migrate DB Schema to store Akvo Flow contents.
  • akvo:seed, Seed Database with Akvo Flow data via Akvo Flow REST API
    • akvo:seed --only-surveys, Seed surveys without it's datapoints.

Database Schema

Once you run php artisan akvo:migrate you will see several tables migrated to your Database.

Eloquent ORM

The Eloquent ORM included with the package provides a simple ActiveRecord implementation for working with your Akvo Flow database. Each database table has a corresponding "Model" which is used to interact with the table. You can load all the Akvo Flow Models directly to your Controller.

use Akvo\Models\Survey;
use Akvo\Models\Answer;

public function surveyAndForms(Survey $surveys)
{
  return $surveys->with('forms');
}

public function answerAndForm(Answer $answer)
{
  return $answer->load('question.form');
}

If you wish to extend different Schema to Models, you could also extend them into your Model directory (Laravel 7+).

Before:

[{
  "id":4310019,
  "name": "Just an example survey (Test)",
  "registration_id": 24390001,
  "path": "/Farmfit surveys/Cases 2019/Agri-Wallet (Kenya)/Survey Agri-Wallet",
  "created_at": "2020-09-10T19:17:22",
  "updated_at": "2020-09-10T19:17:22"
}]

Extend App\Model, adding new object named short:

Namespace App\Model;

use Illuminate\Support\Str;
use Akvo\Models\Survey as AkvoSurvey;

class Survey extends AkvoSurvey
{
  $protected $appends = ['short'];
  
  public function getShortAttribute()
  {
        $text = trim(preg_replace('!\s+-!', ' -', $this->name));
        $text = Str::beforeLast($text, ' (');
        return Str::upper($text);
  }
}

Results:

[{
  "id":4310019,
  "name": "Just an example survey (Test)",
  "registration_id": 24390001,
  "path": "/Farmfit surveys/Cases 2019/Agri-Wallet (Kenya)/Survey Agri-Wallet",
  "short": "Just an example survey",
  "created_at": "2020-09-10T19:17:22",
  "updated_at": "2020-09-10T19:17:22"
}]

Rollback

To roll back the latest migration operation, you may have to run php artisan migrate:reset or you could also re-run php artisan akvo:migrate.

About Akvo

Akvo is a not-for-profit internet and software developer, headquartered in Amsterdam, Netherlands. The foundation specializes primarily in building and operating data collection and visualization systems to be used in international development and aid activity.

Akvo Flow

Akvo Flow is a tool for collecting, evaluating and displaying of geographically referenced data. It is composed of an android mobile app and an online web-based platform. This repository contains code for the web-based platform that comprises a backend engine and a dashboard user interface. Alongside the dashboard and mobile apps, is a data import and export component.

Akvo Tech Consultancy

Akvo offers data consultancy and a digital platform, to support our partner's design their projects with building something on-top, the solutions are built with robust products like Akvo’s as the core workhorse, and then a layer of customisations which goes sufficiently close to aligning with the partner requirements.