Giter VIP home page Giter VIP logo

php-oara's Introduction

php-oara

The goal of the Open Affiliate Report Aggregator (OARA) is to develop a set of PHP classes that can download affiliate reports from a number of affiliate networks, and store the data in a common format.

We provide a simple structure and make it easy to add new networks using the tools available.

This project is being used as part of AffJet, which offers a hosted Affiliate Aggregator service, with a web interface and additional analysis tools.

Development is sponsored by AffJet but we welcome code contributions from anyone.

Networks Supported

The list of supported networks so far is:

We are planning to add more, this is the to-do list:

  • ClickBank
  • Google Adwords
  • More Niche
  • Revenue Wire
  • Shopzilla
  • Insurance4carhire
  • IC Breakdown
  • Solution.weborama.com
  • Mysavingsmedia
  • Logical
  • Escalate
  • Skimlinks
  • Impact
  • Pepperjam
  • Netaffiliation
  • Publicidees.com
  • Effiliation.com
  • FluxAds

System Requirements

To run php-oara you will need to use PHP 5.3, and enable the CURL extension in your php.ini.

Also you will need to have GIT installed in your computer.

Getting Started

Once you have finished these steps you will be able to run the examples for the different networks.

Follow the steps

1. Create the folder with the clone of the code.

git clone git://github.com/paulmaunders/php-oara.git php-oara

2. Change the directory to the root of the project

cd php-oara

3. Initialise the submodules (ZendFramework)

git submodule init

4. Update the submodules (ZendFramework)

git submodule update

5. Credentials.ini.sample

In the example folder a "credentials.ini.sample" has been provided. 
Please rename it to "credentials.ini" and follow the intructions
in order to fill your crendentials.

Contributing

If you want to contribute, you are welcome, please follow the next steps:

Create your own fork

  1. Follow the next instructions to fork your own copy of php-oara. Please read it carefully, as you can also follow the main branch in order to request the last changes in the code.

  2. Work on your own repository. Once all the code is in place you are free to add as many networks and improve the code as much as you can.

  3. Send a pull request instructions When you think that your code is finished, send us a pull request and we will do the rest!

Follow the structure

We would like you to follow the structure provided. If you want to add a network, please pay attention to the next rules:

  • Create a class in the Oara/Network folder with the name of the network. This class must implement the Oara_Network Interface

  • Implement the methods needed:

    • checkConnection
    • getMerchantList
    • getTransactionList
    • getOverviewList
    • getPaymentHistory
  • Add the credentials to the credentials.ini.sample. (Please add also information about how to find your credentials)

  • Add the generic example to the examples folder.

Network

The network classes must implement the Oara_Network interface, which includes these methods.

checkConnection()

It checks if we are succesfully connected to the network

return boolean (true is connected successfully)

getMerchantList($merchantMap)

Get the merchants joined for the network

  • @param array $merchantMap - An array with the merchants already joined (Array of merchants unique ids), empty array by default

  • return Array ( Array of Merchants )

getTransactionList($merchantList, Zend_Date $dStartDate, Zend_Date $dEndDate)

Get the transactions for the network, from the "dStartDate" until "dEndDate" for the merchants provided

  • @param array $merchantList - array with the merchants unique id we want to retrieve the data from

  • @param Zend_Date $dStartDate - start date (included)

  • @param Zend_Date $dEndDate - end date (included)

  • return Array ( Array of Transactions )

getOverviewList($transactionList, $merchantList, Zend_Date $dStartDate, Zend_Date $dEndDate)

Get the overview (a daily summary of our statistics) for the network and the merchants selected for the date given

  • @param array $transactionList - Transaction List

  • @param array $merchantList - array with the merchants we want to retrieve the data from

  • @param Zend_Date $dStartDate - start date (included)

  • @param Zend_Date $dEndDate - end date (included)

  • return Array ( Array of Overview )

getPaymentHistory()

Get the Payments already done for this network

  • return Array ( Array of Payments )

Merchant

It's an array with the following keys:

  • name (not null) - Merchant's name

  • cid (not null) - Merchant's unique id

  • description - Merchant's description

  • url - Merchant's url

Transaction

It's an array with the following keys:

  • merchantId (not null) - Merchant's unique id

  • date (not null) - Transaction date format, "2011-06-26 18:10:10"

  • amount (not null) - Tranasction value (double)

  • commission (not null) - Transaction commission (double)

  • status (not null) - Three different statuses :

    • Oara_Utilities::STATUS_CONFIRMED
    • Oara_Utilities::STATUS_PENDING
    • Oara_Utilities::STATUS_DECLINED
  • link - Link where the transaction comes from

  • website - Website where the transaction comes from

Overview

It's an array with the following keys:

  • merchantId (not null) - Merchant's unique id

  • date (not null) - Transaction date format, "2011-06-26 18:10:10"

  • click_number (not null) - The number (int) of clicks for this date for this merchant, link and website

  • impression_number (not null) - The number (int) of impressions for this date for this merchant, link and website

  • transaction_number (not null) - The number (int) of transactions for this date for this merchant, link and website

  • transaction_confirmed_value (not null) - Transaction value (double) with status confirmed

  • transaction_confirmed_commission (not null) - Transaction commission (double) with status confirmed

  • transaction_pending_value (not null) - Transaction value (double) with status pending

  • transaction_pending_commission (not null) - Transaction commission (double) with status pending

  • transaction_declined_value (not null) - Transaction value (double) with status declined

  • transaction_declined_commission (not null) - Transaction commission (double) with status declined

  • link - Link where the transaction comes from

  • website - Website where the transaction comes from

Payment

It's an array with the next keys:

  • pid (not null) - Payment's unique id

  • date (not null) - Payment date format, "2011-06-26 18:10:10"

  • value (not null) - Payment value

  • method (not null) - Payment method (BACS, CHEQUE, ...)

Contact

If you have any question, go to the project's website or send an email to [email protected]

php-oara's People

Contributors

cmorillo avatar vklepikovskiy avatar

Watchers

James Cloos avatar

Forkers

chetan-jadhav

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.