定制 graymatterlabs/pingtree 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

graymatterlabs/pingtree

最新稳定版本:v0.2.0.2

Composer 安装命令:

composer require graymatterlabs/pingtree

包简介

A Ping Tree is a process in which a single lead is offered to multiple buyers in real-time and sold to the highest bidder

README 文档

README

Latest Version on Packagist Tests Total Downloads

A Ping Tree is a process in which a single lead is offered to multiple buyers in real-time and sold to the highest bidder.

Installation

You can install the package via composer:

composer require graymatterlabs/pingtree:^0.3.0

Usage

$tree = new Tree($strategy, $offers);

$response = $tree->ping($lead);

Responses

The ping tree will return the first successful response provided by an offer. Responses must implement the GrayMatterLabs\PingTree\Contracts\Response interface but should be customized beyond that.

$tree = new Tree($strategy, $offers);

$response = $tree->ping($lead);

if ($response instanceof RedirectResponse) {
  return redirect($response->url());
}

Offers

Offer instances are responsible for communicating with and managing state of the offer such as health and eligibility rules.

<?php

namespace App\Offers;

use App\Http;
use App\Leads\AutoLead;
use GrayMatterLabs\PingTree\Contracts\Offer;
use GrayMatterLabs\PingTree\Contracts\Lead;
use GrayMatterLabs\PingTree\Contracts\Response;

class Example implements Offer
{
    private string $url = 'https://example.com';
    
    public function __construct(private Http $http, private string $key)
    {
    }

    public function getIdentifier(): string|int
    {
        return 'example';
    }

    public function ping(AutoLead $lead): int
    {
        $response = $this->http
            ->withHeader('Authorization', $this->key)
            ->post($this->url . '/value', [
                // ...
            ]);
        
        return (int) $response->json('value');
    }

    public function send(AutoLead $lead): Response
    {
        $response = $this->http
            ->withHeader('Authorization', $this->key)
            ->post($this->url . '/send', [
                // ...
            ]);

        return new RedirectResponse(!$response->ok(), $response->json('accepted'), $response->json('url'));
    }

    public function isEligible(AutoLead $lead): bool
    {
        return $lead->validate();
    }
    
    public function isHealthy(): bool
    {
        return $this->http->get($this->url . '/health')->ok();
    }
}

Events

This package fires events and provides you the ability to register listeners for each. Listeners can be used for performing any custom logic. Listeners are executed synchronously to be sure to handle any potential exceptions.

Listeners can be registered to the Tree class, which handles all events, using the listen method, like so:

$tree = new Tree($strategy, $offers);

// listen for any events
$tree->listen($event, $callable);
$tree->listen($event, $other_callable);

$response = $tree->ping($lead);

Below is a list of all events fired, their descriptions, and the parameters passed to any registered listeners.

Name Description Parameters
selecting An offer is being selected Strategy $strategy, Lead $lead, array $offers
selected An offer has been selected Strategy $strategy, Lead $lead, array $offers, Offer $offer
sending The lead is being sent to the offer Lead $lead, Offer $offer
sent The lead has been send to the offer Lead $lead, Offer $offer, Response $response, int $attempts

Strategies

This package provides a concept of "strategies" to decide which offer to send the lead to. A default set of strategies are provided out-of-the-box. The only requirement to providing your own strategies is that they implement the GrayMatterLabs\PingTree\Contracts\Strategy interface.

Strategy Description
HighestPing Gets the offer with the highest ping() value
RoundRobin A decorator to ensure each offer is attempted across multiple executions for a given lead
Shuffled A decorator to ensure random order before executing the given strategy
Ordered Gets the first offer in the list of provided offers

Testing

composer test

Changelog

Please see the Release Notes for more information on what has changed recently.

Credits

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 351
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-08-08

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固