Пример #1
0
def add_recurring_donation(contact=None,
                           form=None,
                           customer=None,
                           quarantine=False):
    """
    This will add a recurring donation to Salesforce.
    """

    if form["installment_period"] is None:
        raise Exception("installment_period must have a value")

    rdo = RDO(contact=contact)

    rdo.stripe_customer = customer["id"]
    rdo.campaign_id = form["campaign_id"]
    rdo.referral_id = form["referral_id"]
    rdo.description = "Texas Tribune Sustaining Membership"
    rdo.agreed_to_pay_fees = form["pay_fees_value"]
    rdo.encouraged_by = form["reason"]
    rdo.lead_source = "Stripe"
    rdo.amount = form.get("amount", 0)
    rdo.installments = None
    rdo.installment_period = form["installment_period"]
    rdo.open_ended_status = "Open"
    rdo.quarantined = quarantine

    apply_card_details(rdo=rdo, customer=customer)
    rdo.save()

    return rdo
Пример #2
0
def add_blast_subscription(form=None, customer=None):
    """
    Adds a Blast subscription. Blast subscriptions are always recurring. They have two
    email addresses: one for billing and one for the newsletter subscription.

    """

    form = clean(form)

    first_name = form["first_name"]
    last_name = form["last_name"]
    email = form["subscriber_email"]

    logging.info("----Getting contact...")
    contact = Contact.get_or_create(email=email,
                                    first_name=first_name,
                                    last_name=last_name)
    logging.info(contact)

    rdo = RDO(contact=contact)

    rdo.stripe_customer = customer["id"]
    rdo.campaign_id = form["campaign_id"]
    rdo.referral_id = form["referral_id"]
    rdo.lead_source = "Stripe"
    rdo.amount = form.get("amount", 0)
    rdo.agreed_to_pay_fees = form["pay_fees_value"]

    # Blast specific:
    rdo.installments = 0
    rdo.description = "Blast Subscription"
    rdo.open_ended_status = "Open"
    if int(float(rdo.amount)) == 40:
        rdo.installment_period = "monthly"
    else:
        rdo.installment_period = "yearly"
    now = datetime.now(tz=ZONE).strftime("%Y-%m-%d %I:%M:%S %p %Z")
    rdo.name = f"{first_name} {last_name} - {now} - The Blast"
    rdo.type = "The Blast"
    rdo.billing_email = form["stripeEmail"]
    rdo.blast_subscription_email = form["subscriber_email"]

    logging.info("----Saving RDO....")
    apply_card_details(rdo=rdo, customer=customer)
    rdo.save()
    logging.info(rdo)
    # get opportunities
    opportunities = rdo.opportunities()
    today = datetime.now(tz=ZONE).strftime("%Y-%m-%d")
    opp = [
        opportunity for opportunity in opportunities
        if opportunity.expected_giving_date == today
    ][0]
    try:
        charge(opp)
    except ChargeException:
        # TODO should we alert slack? Did not because we had no notifications here before.
        pass

    return True
Пример #3
0
def add_business_rdo(account=None, form=None, customer=None, quarantine=False):
    """
    Adds a recurring business membership to Salesforce.
    """

    if form["installment_period"] is None:
        raise Exception("installment_period must have a value")

    year = datetime.now(tz=ZONE).strftime("%Y")

    rdo = RDO(account=account)
    rdo.name = f"{year} Business {account.name} Recurring"
    rdo.type = "Business Membership"
    rdo.record_type_name = "Business Membership"
    rdo.stripe_customer = customer["id"]
    rdo.campaign_id = form["campaign_id"]
    rdo.referral_id = form["referral_id"]
    rdo.description = "Texas Tribune Business Membership"
    rdo.agreed_to_pay_fees = form["pay_fees_value"]
    rdo.encouraged_by = form["reason"]
    rdo.lead_source = "Stripe"
    rdo.amount = form.get("amount", 0)
    rdo.installments = None
    rdo.open_ended_status = "Open"
    rdo.installment_period = form["installment_period"]
    rdo.quarantined = quarantine

    apply_card_details(rdo=rdo, customer=customer)
    rdo.save()

    return rdo
Пример #4
0
def add_circle_membership(contact=None, form=None, customer=None):
    """
    This will add Circle membership to Salesforce.
    """

    if form["installment_period"] is None:
        raise Exception("installment_period must have a value")

    rdo = RDO(contact=contact)

    rdo.type = "Giving Circle"
    rdo.stripe_customer = customer["id"]
    rdo.campaign_id = form["campaign_id"]
    rdo.referral_id = form["referral_id"]
    rdo.description = "Texas Tribune Circle Membership"
    rdo.agreed_to_pay_fees = form["pay_fees_value"]
    rdo.encouraged_by = form["reason"]
    rdo.lead_source = "Stripe"
    rdo.amount = form.get("amount", 0)
    installment_period = form["installment_period"]
    if installment_period == "monthly":
        rdo.installments = 36
    else:
        rdo.installments = 3

    rdo.installment_period = installment_period
    rdo.open_ended_status = "None"

    apply_card_details(rdo=rdo, customer=customer)
    rdo.save()

    return rdo
Пример #5
0
def add_recurring_donation(contact=None, form=None, customer=None):
    """
    This will add a recurring donation to Salesforce. Both Circle and regular.
    """

    if form["installment_period"] is None:
        raise Exception("installment_period must have a value")

    rdo = RDO(contact=contact)

    rdo.stripe_customer = customer["id"]
    rdo.campaign_id = form["campaign_id"]
    rdo.referral_id = form["referral_id"]
    rdo.description = "Texas Tribune Sustaining Membership"
    rdo.agreed_to_pay_fees = form["pay_fees_value"]
    rdo.encouraged_by = form["reason"]
    rdo.lead_source = "Stripe"
    rdo.amount = form.get("amount", 0)

    installments = form["installments"]

    installment_period = form["installment_period"]
    rdo.installments = installments
    rdo.installment_period = installment_period

    if (installments == 3
            or installments == 36) and (installment_period == "yearly"
                                        or installment_period == "monthly"):
        rdo.type = "Giving Circle"
        rdo.description = "Texas Tribune Circle Membership"
        rdo.open_ended_status = "None"
    else:
        rdo.open_ended_status = "Open"

    apply_card_details(rdo=rdo, customer=customer)
    rdo.save()

    return rdo
Пример #6
0
        add_email_to_stripe(row["customer_id"], row["email"])
        # check for dupe
        if (RDO.get(stripe_customer_id=row["customer_id"],
                    sf_connection=sf_connection)) is not None:
            print("Exiting; WARNING: duplicate!")
            sys.exit(-1)

        contact = Contact.get_or_create(sf_connection=sf_connection,
                                        email=row["email"])
        now = datetime.now(tz=pytz.utc).strftime("%Y-%m-%d %I:%M:%S %p %Z")

        if contact.last_name == "Subscriber":
            rdo_name = f"{now} for {row['email']}"
        else:
            rdo_name = f"{now} for {contact.first_name} {contact.last_name}"

        rdo = RDO(contact=contact, sf_connection=sf_connection)
        rdo.stripe_customer_id = row["customer_id"].strip()
        rdo.name = rdo_name
        rdo.description = f"{row['subscription_id']} ({row['plan_name']})"
        rdo.lead_source = "Stripe"
        rdo.installment_period = interval_map[row["interval"].strip()]
        rdo.amount = row["amount"].strip()
        rdo.open_ended_status = "Open"

        current_period_end = arrow.get(row["current_period_end"].strip())
        rdo.date_established = current_period_end.strftime("%Y-%m-%d")
        rdo.day_of_month = current_period_end.strftime("%-d")

        rdo.save()