npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

pagseguro-that-works

v0.6.7

Published

Pagseguro API wrapper that actually works!

Downloads

29

Readme

Pagseguro API wrapper that actually works!

Homepage

The main problem that I want to resolve with this package is that PagSeguro API packages are confusing and bad documented, so I've created this to include every payment method I need to use.

Feel free to contribute :)

Install

yarn add pagseguro-that-works

Recurring Payment Flow

This feature will make this flow:

The basic flow is accomplished when these features are englobed:

| Description | Developed | Tested | | --------------------- | --------- | ------ | | Plan creation | Yes | Yes | | Log in to join a plan | Yes | Yes | | Plan adherence | Yes | Yes | | Billing plan | Yes | Yes | | Retry payment | Yes | Yes |

The fully flow is accomplished when these features are englobed:

| Description | Developed | Tested | | ------------------------- | --------- | ------ | | Plan creation | Yes | Yes | | Log in to join a plan | Yes | Yes | | Plan adherence | Yes | Yes | | Billing plan | Yes | Yes | | Suspend plan | No | No | | Reactivate plan | No | No | | Edit plan | No | No | | Include coupon to payment | No | No | | Change payment method | No | No | | Retry payment | Yes | Yes |

Recurring Payment Usage

Plan Creation

You need to create a request object based on type CreatePlanRequest, and pass with your Pagseguro Email, Pagseguro Token and NODE_ENV (development or production)

const finalDate = new Date();
finalDate.setMonth(finalDate.getMonth() + 1);
const request: CreatePlanRequest = {
    reference: 'SOME REFERENCE',
    preApproval: {
        name: 'PLAN NAME',
        charge: 'MANUAL',
        period: 'MONTHLY',
        amountPerPayment: 200.0,
        membershipFee: 15000.0,
        trialPeriodDuration: 28,
        finalDate,
    },
    maxUses: 500,
};
const createPlanResponse = await createPlan(pagseguroEmail, pagseguroToken, nodeEnv, request);
const [planId] = createPlanResponse.preApprovalRequest.code;

Log in to join a plan

You need to pass your Pagseguro Email, Pagseguro Token and NODE_ENV (development or production)

const sessionResponse = await getSession(pagseguroEmail, pagseguroToken, nodeEnv);
const sessionId = sessionResponse.session.id;

Plan adherence

You need to apss your Pagseguro Email, Pagseguro Token, NODE_ENV (development or production) and a request based on type AdherePlanRequest

const request: AdherePlanRequest = {
    plan: 'PLAN ID, e.g. 659AB301DFDFE684448C1FB8B86F28F8',
    reference: 'SOME REFERENCE',
    paymentMethod: {
        type: 'CREDITCARD',
        creditCard: {
            token: 'CARD TOKEN GENERATED ON BROWSER',
            holder: {
                name: 'Nome Comprador',
                birthDate: '11/01/1984',
                documents: [
                    {
                        type: 'CPF',
                        value: '00000000191',
                    },
                ],
                billingAddress: {
                    street: 'Av. Brigadeiro Faria Lima',
                    number: '1384',
                    complement: '3 andar',
                    district: 'Jd. Paulistano',
                    city: 'São Paulo',
                    state: 'SP',
                    country: 'BRA',
                    postalCode: '01452002',
                },
                phone: {
                    areaCode: '11',
                    number: '988881234',
                },
            },
        },
    },
    sender: {
        email: '[email protected]',
        name: 'Sender Name',
        hash: 'SENDERHASH GENERATED ON BROWSER',
        address: {
            street: 'Av. Brigadeira Faria Lima',
            number: '1384',
            complement: '3 andar',
            district: 'Jd. Paulistano',
            city: 'São Paulo',
            state: 'SP',
            country: 'BRA',
            postalCode: '01452002',
        },
        documents: [
            {
                type: 'CPF',
                value: '00000000191',
            },
        ],
        phone: {
            areaCode: '11',
            number: '988881234',
        },
    },
};
const adherePlanResponse = await adherePlan(pagseguroEmail, pagseguroToken, nodeEnv, request);
const preApprovalCode = adherePlanResponse.code;

Billing plan

You need to pass your Pagseguro Email, Pagseguro Token, NODE_ENV (development or production), a request based on type BillingPlanRequest, the preApprovalCode (result from plan adherence))

PS: You can only bill a plan that charge is MANUAL

const request: BillingPlanRequest = {
    preApprovalCode: preApprovalCode as string,
    items: [{ id: '0001', description: 'teste1', amount: '200.00', quantity: '1' }],
};

const billingPlanResponse = await billingPlan(email as string, token as string, 'development', request);

Retry payment

You need to pass your Pagseguro Email, Pagseguro Token, NODE_ENV (development or production), a request based on type RetryPaymentRequest, the preApprovalCode (result from plan adherence) and the paymentOrderCode (you can see how to get this here)

PS: You can only bill a plan that charge is AUTO

const request: RetryPaymentRequest = {
    type: 'CREDITCARD',
    sender: {
        hash: 'SENDERHASH GENERATED ON BROWSER',
    },
    creditCard: {
        token: 'CARD TOKEN GENERATED ON BROWSER',
        holder: {
            name: 'Nome Comprador',
            birthDate: '11/01/1984',
            documents: [
                {
                    type: 'CPF',
                    value: '00000000191',
                },
            ],
            billingAddress: {
                street: 'Av. Brigadeiro Faria Lima',
                number: '1384',
                complement: '3 andar',
                district: 'Jd. Paulistano',
                city: 'São Paulo',
                state: 'SP',
                country: 'BRA',
                postalCode: '01452002',
            },
            phone: {
                areaCode: '11',
                number: '988881234',
            },
        },
    },
};
const retryPaymentResponse = await retryPayment(pagseguroEmail, pagseguroToken, nodeEnv, request, preApprovalCode, paymentOrderCode);
const { transactionCode } = retryPaymentResponse;

Test

PS: You need to create a project running with PagSeguroDirectPayment at port 3000. If you want to clone something already developed, clone this repo: pagseguro-hash-generator

PS2: Create a .env based on .env.example

yarn test

Author

👤 Eduardo Santos Brito

🤝 Contributing

Contributions, issues and feature requests are welcome!Feel free to check issues page.

Show your support

Give a ⭐️ if this project helped you!

📝 License

Copyright © 2021 Eduardo Santos Brito. This project is MIT licensed.


This README was generated with ❤️ by readme-md-generator