(同じ名前の)新しいsegmentIdをマッピング配列に追加したいが、elementIdは異なるがメソッドは同じ


14

以下はMapperInterface.phpです

if-elseステートメントをconstに追加する方法を理解しようとしています。マッピング配列。そのような何か:

if (LIN02 == VN”) 
o   Treat LIN03 as the SKU
·         else if (LIN04 == VN”) 
o   Treat LIN05 as the SKU

<?php

declare(strict_types=1);

namespace Direct\OrderUpdate\Api;

use Direct\OrderUpdate\Api\OrderUpdateInterface;

/**
 * Interface MapperInterface
 * Translates parsed edi file data to a \Direct\OrderUpdate\Api\OrderUpdateInterface
 * @package Direct\OrderUpdate\Api
 */
interface MapperInterface
{
    /**
     * Mapping array formatted as MAPPING[segemntId][elemntId] => methodNameToProcessTheValueOfElement
     * @var array
     */
    const MAPPING = [
        'DTM' => ['DTM02' => 'processCreatedAt'],   // shipment.created_at
        'PRF' => ['PRF01' => 'processIncrementId'], // order.increment_id
        'LIN' => ['LIN05' => 'processSku'],         // shipment.items.sku
        'SN1' => ['SN102' => 'processQty'],         // shipment.items.qty
        'REF' => ['REF02' => 'processTrack']        // shipment.tracks.track_number, shipment.tracks.carrier_code
    ];

    /**
     * Mapping for carrier codes
     * @var array
     */
    const CARRIER_CODES_MAPPING = ['FED' => 'fedex'];

    /**
     * @return array
     */
    public function getMapping(): array;

    /**
     * @param array $segments
     * @return OrderUpdateInterface
     */
    public function map(array $segments): OrderUpdateInterface;
}

それが理にかなっていると思います。それについてより良い方法があるかどうかはわかりませんが、最終的には複数の「LIN」segmentIdが必要です。多分新しい関数を追加し、この条件を使用しますか?

新しいファイルの回答***

    <?php

    declare(strict_types=1);

    namespace Direct\OrderUpdate\Api;

    use Direct\OrderUpdate\Api\OrderUpdateInterface;

    /**
     * Abstract Mapper
     * Translates parsed edi file data to a \Direct\OrderUpdate\Api\OrderUpdateInterface
     * @package Direct\OrderUpdate\Api
     */

    abstract class AbstractMapper{
    // Here we add all the methods from our interface as abstract
    public abstract function getMapping(): array;
    public abstract function map(array $segments): OrderUpdateInterface;

    // The const here will behave the same as in the interface
    const CARRIER_CODES_MAPPING = ['FED' => 'fedex'];

    // We will set our default mapping - notice these are private to disable access from outside
    private const MAPPING = ['LIN' => [
    'LIN02' => 'VN',
    'LIN01' => 'processSku'],
    'PRF' => ['PRF01' => 'processIncrementId'],
    'DTM' => ['DTM02' => 'processCreatedAt'],
    'SN1' => ['SN102' => 'processQty'],
    'REF' => ['REF02' => 'processTrack']];

    private $mapToProcess = [];

    // When we initiate this class we modify our $mapping member according to our new logic
    function __construct() {
    $this->mapToProcess = self::MAPPING; // init as
    if ($this->mapToProcess['LIN']['LIN02'] == 'VN')
    $this->mapToProcess['LIN']['LIN03'] = 'processSku';
    else if ($this->mapToProcess['LIN']['LIN04'] == 'VN')
        $this->mapToProcess['LIN']['LIN05'] = 'processSku';
    }

    // We use this method to get our process and don't directly use the map
    public function getProcess($segemntId, $elemntId) {
    return $this->mapToProcess[$segemntId][$elemntId];
    }

   }

class Obj extends AbstractMapper {
    // notice that as interface it need to implement all the abstract methods
    public function getMapping() : array {
        return [$this->getMapping()];
    }
    public function map() : array {
        return [$this->map()];
    }

}

class Obj extends AbstractMapper {
    // notice that as interface it need to implement all the abstract methods
    public function getMapping() : array {
        return [$this->getMapping()];
    }
    public function map() : array {
        return [$this->map()];
    }

}

では、マッピング定数配列を動的にしたいですか?constではそれはできません。別の関数を使用してその配列を取得し、必要に応じて変更できます
dWinder

あなたが何をしようとしているのか本当にわかりません。何を達成したいですか?
ステファンVierkant

回答:


6

あなたが見ることができるようにここに - のconst変数を変更または保留ロジックすることはできません。インターフェースもロジックを保持できないことに注意してください。そのため、インターフェースでそれを行うことはできません。

あなたの問題のより良い解決策は、抽象クラスを使用することだと思います。私はあなたのインターフェースと同じになります(違いについての議論はここで見ることができますが、あなたのニーズには同じだと思います)。

私はこのように抽象クラスを作成することをお勧めします:

abstract class AbstractMapper{
    // here add all the method from your interface as abstract
    public abstract function getMapping(): array;
    public abstract function map(array $segments): OrderUpdateInterface;

    // the const here will behave the same as in the interface
    const CARRIER_CODES_MAPPING = ['FED' => 'fedex'];

    // set your default mapping - notice those are private to disable access from outside
    private const MAPPING = ['LIN' => [
                                'LIN02' => 'NV', 
                                'LIN01' => 'processSku'], 
                             'PRF' => [
                                'PRF01' => 'processIncrementId']];
    private $mapToProcess = [];


    // when initiate this class modify your $mapping member according your logic
    function __construct() {
        $this->mapToProcess = self::MAPPING; // init as 
        if ($this->mapToProcess['LIN']['LIN02'] == 'NV')
            $this->mapToProcess['LIN']['LIN03'] = 'processSku';
        else if ($this->mapToProcess['LIN']['LIN04'] == 'NV')
            $this->mapToProcess['LIN']['LIN05'] = 'processSku';
     }

    // use method to get your process and don't use directly the map
    public function getProcess($segemntId, $elemntId) {
        return $this->mapToProcess[$segemntId][$elemntId];
    }

}

これで、継承したオブジェクトを次のように宣言できます。

class Obj extends AbstractMapper {
    // notice that as interface it need to implement all the abstract methods
    public function getMapping() : array {
        return [];
    }
}

使用例は次のとおりです。

$obj  = New Obj();
print_r($obj->getProcess('LIN', 'LIN01'));

ロジックは変更されていないようですので、新しい変数を入れて、構成中に設定しました。必要な場合は、ダンプしてgetProcess関数の戻り値を変更するだけです。そこにすべてのロジックを配置します。

もう1つのオプションは、$mapToProcessパブリックにして直接アクセスすることですが、ゲッターメソッドを使用する方がプログラミングが優れていると思います。

お役に立てば幸いです。


最後の関数public function map(array $ segments)のすぐ下にある同じファイルの抽象クラス全体を統合/追加できるはずです:OrderUpdateInterface; } HERE
シングルトン

だから今私はすべての古いコードをオーバーライドしてこの抽象クラスを使用できますか?私は正解であり、友人に非常に役立つと答えました。@dWinder
シングルトン

はい、できます。インターフェイスと抽象クラスには違いがありますが、ほとんどの場合、同じように動作します(投稿の冒頭にあるリンクでそれについて読むことができます)。
dWinder

私はロジックにこれを正しく追加する必要があると思いますか?else if($ this-> mapToProcess ['LIN'] ['LIN04'] == 'VN')$ this-> mapToProcess ['LIN'] ['LIN05'] = 'processSku';
シングルトン

1
それも追加する必要があります。私は、ロジックのあるべき場所の例として、その一部のみを示しています。それを編集して、コードがそれをカバーするようにします
dWinder

5

定数定義内にif-elseステートメントを追加することはできません。あなたが探しているものに最も近いのはおそらくこれです:

const A = 1;
const B = 2;

// Value of C is somewhat "more dynamic" and depends on values of other constants
const C = self::A == 1 ? self::A + self::B : 0;

// MAPPING array inherits "more dynamic" properties of C
const MAPPING = [
    self::A,
    self::B,
    self::C,
];

出力されます:

0 => 1
1 => 2
2 => 3

つまり、配列を個別の定数に分解し、すべての条件付き定義を行い、結果の定数値から最終的なMAPPING配列を構築する必要があります。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.