Este é um plugin do Ruby on Rails que permite utilizar o PagSeguro, gateway de pagamentos do UOL.
- Adicionado gerador para instalação da biblioteca em projetos Rails
- Adicionada opção para URL de retorno dinâmica
- Implementação parcial da API de pagamentos
- Implementação parcial da API de notificações
Adicione a biblioteca ao arquivo Gemfile:
gem 'pagseguro_client'
Depois de realizar a instalação da biblioteca, você precisará gerar o arquivo de configuração, que deve residir em config/pagseguro.yml. Para gerar o arquivo a partir de um modelo execute
rails generate pagseguro_client:install
O arquivo de configuração gerado será parecido com isso:
development: &development
ws_url: "http://localhost:4000"
ps_url: "http://localhost:4000"
return_to: "http://localhost:4000/successo"
email: [email protected]
token: "tokenGeradoPeloPagseguro"
test:
<<: *development
production:
ws_url: "https://ws.pagseguro.uol.com.br"
ps_url: "https://pagseguro.uol.com.br"
return_to: "http://www.sualoja.com.br/successo"
email: [email protected]
token: "tokenGeradoPeloPagseguro"
Para realizar os testes de integração da sua aplicação com o gateway, você pode usar um servidor de testes desenvolvido pelo próprio Pagseguro: Pagseguro Server
@order = PagseguroClient::Order.new(id) # Seu identificador da ordem de pagamento
@order.add(
id: "1", # Seu identificador do produto
description: produto.descricao,
amount: produto.preco)
@response = order.send_request
# Hash
{
code: "8CF4BE7DCECEF0F004A6DFA0A8243412",
url: "https://ws.pagseguro.uol.com.br/v2/checkout/payment.html?code=8CF4BE7DCECEF0F004A6DFA0A8243412"
}
Agora basta usar a url retornada para enviar o usuário para efetuar o pagamento no site do Pagseguro.
Para configurar uma URL de retorno dinâmica a sua aplicação Rails, basta adicionar ao arquivo pagseguro.yml a opção return_to com o endereço para retorno que você configurou na sua aplicação:
production:
ws_url: "https://ws.pagseguro.uol.com.br"
ps_url: "https://pagseguro.uol.com.br"
return_to: "http://www.sualoja.com.br/sucesso"
email: [email protected]
token: "tokenGeradoPeloPagseguro"
# No seu controller
def notificacao
return unless request.post?
@notification = PagseguroClient::Notification.retrieve(params[:notificationCode])
# Seu código para utilizar a notificação
render nothing: true
end
O objeto notification
possui os seguintes métodos:
PagseguroClient::Notification#code
: Código da notificaçãoPagseguroClient::Notification#order_id
: Código da sua ordem de pagamentoPagseguroClient::Notification#status
: Status da ordem de pagamento atualPagseguroClient::Notification#payment_method
: Método utilizado para o pagamento
credit_card
: Cartão de créditoinvoice
: Boletoonline_transfer
: Pagamento onlinepagseguro
: Transferência entre contas do PagSegurooi_paggo
: Oi Paggo :)
pending
: Aguardando pagamentoverifying
: Em análiseapproved
: Aprovadoavailable
: Disponívelrefunded
: Devolvidocanceled
: Cancelado
Matheus Tardivo (http://matheustardivo.com)
(The MIT License)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.