当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript RecurringCharges.get方法代码示例

本文整理汇总了TypeScript中shopify-prime.RecurringCharges.get方法的典型用法代码示例。如果您正苦于以下问题:TypeScript RecurringCharges.get方法的具体用法?TypeScript RecurringCharges.get怎么用?TypeScript RecurringCharges.get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在shopify-prime.RecurringCharges的用法示例。


在下文中一共展示了RecurringCharges.get方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: postBilling

export async function postBilling(server: Server, request: Request, reply: IReply)
{
    async function view(error: string)
    {
        const artifacts = request.auth.artifacts;
        const service = new RecurringCharges(artifacts.shopDomain, artifacts.shopToken);
        const charge = await service.get(artifacts.chargeId);
        const props: BillingProps = {
            title: "Billing Settings.",
            plan: findPlan(request.auth.artifacts.planId),
            trialEndsOn: charge.trial_ends_on,
            billingOn: charge.billing_on,
            error: error,
        }

        return reply.view("account/billing.js", props);
    }

    const artifacts = request.auth.artifacts;
    const validation = joi.validate<{plan: string}>(request.payload, JoiValidation.postBilling);

    if (validation.error)
    {
        return await view(humanizeError(validation.error));
    }

    const plan = findPlan(validation.value.plan);

    if (plan.id === artifacts.planId)
    {
        return reply.redirect(Routes.GetBilling);
    }

    const service = new RecurringCharges(artifacts.shopDomain, artifacts.shopToken);

    // Get the user's current charge so we can transfer their trial days 
    const currentCharge = await service.get(artifacts.chargeId, {fields: ["trial_ends_on"]});

    // Figure out the new trial length by checking if current charge's trial_ends_on hasn't happened yet (Today < Tomorrow)
    const trialDays = Math.round((new Date(currentCharge.trial_ends_on).valueOf() - new Date().valueOf()) / 1000 / 60 / 60 / 24);

    // The new charge will replace the user's current charge on activation.
    const charge = await service.create({
        name: plan.name,
        price: plan.price,
        test: !server.app.isLive,
        trial_days: trialDays > 0 ? trialDays : 0,
        return_url: `${getRequestDomain(request)}${Routes.UpdatePlan}?plan_id=${plan.id}`.toLowerCase(),
    });
    
    //Send the user to the confirmation url
    return reply.redirect(charge.confirmation_url);
}
开发者ID:nozzlegear,项目名称:deliver-on,代码行数:53,代码来源:account-routes.ts

示例2: getBilling

export async function getBilling(server: Server, request: Request, reply: IReply)
{
    const artifacts = request.auth.artifacts;
    const service = new RecurringCharges(artifacts.shopDomain, artifacts.shopToken);
    const charge = await service.get(artifacts.chargeId);
    const props: BillingProps = {
        title: "Billing Settings.",
        plan: findPlan(request.auth.artifacts.planId),
        trialEndsOn: charge.trial_ends_on,
        billingOn: charge.billing_on,
    }

    return reply.view("account/billing.js", props);
}
开发者ID:nozzlegear,项目名称:deliver-on,代码行数:14,代码来源:account-routes.ts

示例3: activateShopifyPlan

export async function activateShopifyPlan(server: Server, request: Request, reply: IReply)
{
    const query: {shop: string, hmac: string, charge_id: number, plan_id: string} = request.query;
    const plan = findPlan(query.plan_id);
    const artifacts = request.auth.artifacts;
    const service = new RecurringCharges(artifacts.shopDomain, artifacts.shopToken);
    let charge: RecurringCharge;
    
    try
    {
        charge = await service.get(query.charge_id);
        
        if (charge.status !== "accepted")
        {
            //Charges can only be activated when they've been accepted
            throw new Error(`Charge status was ${charge.status}`);
        }
    }
    catch (e)
    {
        console.error("Recurring charge error", e);
        
        // Charge has expired or was declined. Send the user to select a new plan.
        return reply.redirect(SetupRoutes.GetPlans);
    }
    
    await service.activate(charge.id);
    
    // Update the user's planid
    let user = await Users.get(request.auth.credentials.userId) as User;
    user.planId = plan.id;
    user.chargeId = charge.id;
    
    const update = await Users.put(user);
    
    if (!update.ok)
    {
        throw new Error("Activated user plan but failed to save plan id.");
    }
    
    await setUserAuth(request, user);

    // Create the script tag on the user's store.
    await createTag(user.shopifyDomain, user.shopifyAccessToken, user.shopifyShopId);
    
    return reply.redirect("/");
}
开发者ID:nozzlegear,项目名称:deliver-on,代码行数:47,代码来源:connect-routes.ts


注:本文中的shopify-prime.RecurringCharges.get方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。