# README >This is the Ruby version of the Xapo's Widget Tools. These tools allow you (Third Party Application, TPA) to easily embed tools like Payments Buttons, Donation Buttons and other kind of widgets as DIV or iFrame into your web application using your language of choice. In this way, tedious details like encryption and HTML snippet generation are handled for you in a simple and transparent way. --- [Changelog](CHANGELOG.md) ## Table of Contents - [Build](#build) - [Installation](#installation) - [API](#api) - [Credit](#credit) - [Parameters](#parameters) - [Result](#result) - [Usage Example](#usage-example) - [Micro Payment Widgets](#micro-payment-widgets) - [IFrame Widget](#iframe-widget) - [Div Widget](#div-widget) - [Widgets Gallery](#widgets-gallery) - [Contributing](#contributing) - [TODO](#todo) ## Build Ensure that tests pass: $ rake test Build the gem (output to `./pkg`): $ rake build And finally install de gem: $ rake install ## Installation Add this line to your application's Gemfile: ```ruby gem 'xapo_sdk' ``` And then execute: $ bundle Or install it yourself as: $ gem install xapo_sdk ## API The of the API allows third party application to interact with Xapo wallets and resources in a simple and intuitive way. Development Environment: > http://dev.xapo.com/api/v1 ### Credit The Credit API allows any Third Party Application (TPA) to load Bitcoins into any Xapo Wallet using a secure App_ID + App_Shared_Key authentication method. #### Parameters - **To:** ``(string, mandatory)`` any email, BTC address or mobile number. - **Currency:** ``(Currency, mandatory)`` any of ``Currency.BTC`` or ``Currency.SAT`` . - **Amount:** ``(numeric, mandatory)`` amount to be credited. - **Comments:** ``(string, optional)`` note or message to attach to the transaction. - **Subject:** ``(string, optional)`` if specified, will be used as email subject (when crediting an email address) or SMS text (when crediting a mobile #). - **Timestamp:** ``(int, mandatory)`` UTC Unix Timestamp. The request will be rejected if using a timestamp not equal or greater than the last used by previous request. - **Resquest Id:** ``(string, mandatory)`` any ID that uniquely identifies this request. Cannot be repeated with any new request. #### Result The result is a dictionary containing: | Key | Type | Description | |---------| ------- | ----------- | | success | boolean | Indicates whether the request was successfully processed or not | | code | string | A response | | message | string | Description of the result | Error codes: | Code | Message | | --------------- | ------- | Success | Wallet successfully credited | InvalidRequest | Either the App token or Hash are invalid | ExpiredRequest | The request timestamp and/or unique_request_id have expired | InvalidWallet | Wallet not linked with this APP | InvalidEmail | The destination email is invalid | InvalidBTCAddress | The destination BTC address is invalid | InvalidCellphone | The destination mobile number is invalid | InvalidCurrency | The currency is invalid | InvalidAmount | The amount to deposit is invalid | MinimumAmount | The amount to deposit must be at least XXX | InsufficientFunds | The wallet you are withdrawing from does not have enough available balance to fulfill the Deposit | #### Usage Example ```ruby require "xapo_api" require "securerandom" ... # config the api api = Xapo::API.new(SERVICE_URL, APP_ID, APP_SECRET) ... # call cerdit service res = api.credit('sample@xapo.com', 0.5, SecureRandom.hex, currency: Xapo::Currency::BTC, comments: "Sample deposit") puts(res) ``` ## Micro Payment Widgets Micro payment widgets allow to dynamically get a HTML snippet pre-configured and insert into your web page. Micro payment widgets provides 4 kind of pre-configured actions __Pay, Donate, Tip__ and __Deposit__. The widgets allow the following configurations: - **Amount BIT:** `[optional]` sets a fixed amount for the intended payment. - **Sender's Id:** `[optional]` any identifier used in the TPA context to identify the sender. - **Sender's email:** `[optional]` used to pre-load the widget with the user's email. - **Sender's cellphone:** `[optional]` used to pre-load the widget with the user's cellphone. - **Receiver's Id:** `[mandatory]` any receiver's user unique identifier in the TPA context. - **Receiver's email:** `[mandatory]` the email of the user receiving the payment. It allows XAPO to contact the receiver to claim her payment. - **Pay Object's Id:** `[mandatory]` any unique identifier in the context of the TPA distinguishing the object of the payment. - **Pay type:** `[optional]` any of Donate | Pay | Tip | Deposit. Be aware that micro payments could be optionally configured with your own application id and secret (`app_id`/`app_secret`). Configuring the micro payment with your application credentials allows you to charge a transaction fee for example. ### IFrame Widget ```ruby require 'xapo_tools' ... micro_payment = XapoTools::MicroPayment.new( XAPO_URL, APP_ID, # optional APP_SECRET # optional ) config = XapoTools.micro_payment_config config[:sender_user_email] = "sender@xapo.com" config[:sender_user_cellphone] = "+5491112341234" config[:receiver_user_id] = "r0210" config[:receiver_user_email] = "fernando.taboada@xapo.com" config[:pay_object_id] = "to0210" config[:amount_BIT] = 0.01 config[:pay_type] = PayType::DONATE # Get IFRAME snippet String iframe = microPayment.buildIframeWidget(request); ``` With this you get the following snippet: ```html ``` See the example results in the [widgets gallery](#widgets-gallery). ### Div Widget ```ruby require 'xapo_tools' ... micro_payment = XapoTools::MicroPayment.new( XAPO_URL, APP_ID, # optional APP_SECRET # optional ) config = XapoTools.micro_payment_config config[:sender_user_email] = "sender@xapo.com" config[:sender_user_cellphone] = "+5491112341234" config[:receiver_user_id] = "r0210" config[:receiver_user_email] = "fernando.taboada@xapo.com" config[:pay_object_id] = "to0210" config[:amount_BIT] = 0.01 config[:pay_type] = PayType::TIP # PayType::TIP | PayType::PAY | PayType::DEPOSIT | PayType::DONATE config[:pay_type] = PayType::DONATE # Get DIV snippet xapo_tools.build_div_widget(config) ``` With this you get the following snippet: ```html
``` See the example results in the [widgets gallery](#widgets-gallery). ### Widgets Gallery ![payment button](http://developers.xapo.com/images/payment_widget/donate_button.png) ![payment phone](http://developers.xapo.com/images/payment_widget/mpayment1.png) ![payment email](http://developers.xapo.com/images/payment_widget/mpayment2.png) ![payment pin](http://developers.xapo.com/images/payment_widget/mpayment3.png) ## Contributing 1. Fork it ( https://github.com/xapo/ruby-sdk/fork ) 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create a new Pull Request ## TODO - ~~Fix style (https://github.com/bbatsov/ruby-style-guide#naming)~~ - ~~Add unit testing~~ - Document, document, ~~document~~ - ~~Review naming and organization (with respect to Java & Python?)~~ - ~~Review `gem` build infraestructure~~ - ...