/var/www/hkosl.com/b2b2c/webadmin/libraies/illuminate/events/Dispatcher.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
<?php

namespace Illuminate\Events;

use 
Exception;
use 
ReflectionClass;
use 
Illuminate\Support\Str;
use 
Illuminate\Container\Container;
use 
Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use 
Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
use 
Illuminate\Contracts\Broadcasting\Factory as BroadcastFactory;
use 
Illuminate\Contracts\Container\Container as ContainerContract;

class 
Dispatcher implements DispatcherContract
{
    
/**
     * The IoC container instance.
     *
     * @var \Illuminate\Contracts\Container\Container
     */
    
protected $container;

    
/**
     * The registered event listeners.
     *
     * @var array
     */
    
protected $listeners = [];

    
/**
     * The wildcard listeners.
     *
     * @var array
     */
    
protected $wildcards = [];

    
/**
     * The sorted event listeners.
     *
     * @var array
     */
    
protected $sorted = [];

    
/**
     * The event firing stack.
     *
     * @var array
     */
    
protected $firing = [];

    
/**
     * The queue resolver instance.
     *
     * @var callable
     */
    
protected $queueResolver;

    
/**
     * Create a new event dispatcher instance.
     *
     * @param  \Illuminate\Contracts\Container\Container|null  $container
     * @return void
     */
    
public function __construct(ContainerContract $container null)
    {
        
$this->container $container ?: new Container;
    }

    
/**
     * Register an event listener with the dispatcher.
     *
     * @param  string|array  $events
     * @param  mixed  $listener
     * @param  int  $priority
     * @return void
     */
    
public function listen($events$listener$priority 0)
    {
        foreach ((array) 
$events as $event) {
            if (
Str::contains($event'*')) {
                
$this->setupWildcardListen($event$listener);
            } else {
                
$this->listeners[$event][$priority][] = $this->makeListener($listener);

                unset(
$this->sorted[$event]);
            }
        }
    }

    
/**
     * Setup a wildcard listener callback.
     *
     * @param  string  $event
     * @param  mixed  $listener
     * @return void
     */
    
protected function setupWildcardListen($event$listener)
    {
        
$this->wildcards[$event][] = $this->makeListener($listener);
    }

    
/**
     * Determine if a given event has listeners.
     *
     * @param  string  $eventName
     * @return bool
     */
    
public function hasListeners($eventName)
    {
        return isset(
$this->listeners[$eventName]) || isset($this->wildcards[$eventName]);
    }

    
/**
     * Register an event and payload to be fired later.
     *
     * @param  string  $event
     * @param  array  $payload
     * @return void
     */
    
public function push($event$payload = [])
    {
        
$this->listen($event.'_pushed', function () use ($event$payload) {
            
$this->fire($event$payload);
        });
    }

    
/**
     * Register an event subscriber with the dispatcher.
     *
     * @param  object|string  $subscriber
     * @return void
     */
    
public function subscribe($subscriber)
    {
        
$subscriber $this->resolveSubscriber($subscriber);

        
$subscriber->subscribe($this);
    }

    
/**
     * Resolve the subscriber instance.
     *
     * @param  object|string  $subscriber
     * @return mixed
     */
    
protected function resolveSubscriber($subscriber)
    {
        if (
is_string($subscriber)) {
            return 
$this->container->make($subscriber);
        }

        return 
$subscriber;
    }

    
/**
     * Fire an event until the first non-null response is returned.
     *
     * @param  string|object  $event
     * @param  array  $payload
     * @return mixed
     */
    
public function until($event$payload = [])
    {
        return 
$this->fire($event$payloadtrue);
    }

    
/**
     * Flush a set of pushed events.
     *
     * @param  string  $event
     * @return void
     */
    
public function flush($event)
    {
        
$this->fire($event.'_pushed');
    }

    
/**
     * Get the event that is currently firing.
     *
     * @return string
     */
    
public function firing()
    {
        return 
last($this->firing);
    }

    
/**
     * Fire an event and call the listeners.
     *
     * @param  string|object  $event
     * @param  mixed  $payload
     * @param  bool  $halt
     * @return array|null
     */
    
public function fire($event$payload = [], $halt false)
    {
        
// When the given "event" is actually an object we will assume it is an event
        // object and use the class as the event name and this event itself as the
        // payload to the handler, which makes object based events quite simple.
        
if (is_object($event)) {
            list(
$payload$event) = [[$event], get_class($event)];
        }

        
$responses = [];

        
// If an array is not given to us as the payload, we will turn it into one so
        // we can easily use call_user_func_array on the listeners, passing in the
        // payload to each of them so that they receive each of these arguments.
        
if (! is_array($payload)) {
            
$payload = [$payload];
        }

        
$this->firing[] = $event;

        if (isset(
$payload[0]) && $payload[0] instanceof ShouldBroadcast) {
            
$this->broadcastEvent($payload[0]);
        }

        foreach (
$this->getListeners($event) as $listener) {
            
$response call_user_func_array($listener$payload);

            
// If a response is returned from the listener and event halting is enabled
            // we will just return this response, and not call the rest of the event
            // listeners. Otherwise we will add the response on the response list.
            
if (! is_null($response) && $halt) {
                
array_pop($this->firing);

                return 
$response;
            }

            
// If a boolean false is returned from a listener, we will stop propagating
            // the event to any further listeners down in the chain, else we keep on
            // looping through the listeners and firing every one in our sequence.
            
if ($response === false) {
                break;
            }

            
$responses[] = $response;
        }

        
array_pop($this->firing);

        return 
$halt null $responses;
    }

    
/**
     * Broadcast the given event class.
     *
     * @param  \Illuminate\Contracts\Broadcasting\ShouldBroadcast  $event
     * @return void
     */
    
protected function broadcastEvent($event)
    {
        
$this->container->make(BroadcastFactory::class)->queue($event);
    }

    
/**
     * Get all of the listeners for a given event name.
     *
     * @param  string  $eventName
     * @return array
     */
    
public function getListeners($eventName)
    {
        
$wildcards $this->getWildcardListeners($eventName);

        if (! isset(
$this->sorted[$eventName])) {
            
$this->sortListeners($eventName);
        }

        return 
array_merge($this->sorted[$eventName], $wildcards);
    }

    
/**
     * Get the wildcard listeners for the event.
     *
     * @param  string  $eventName
     * @return array
     */
    
protected function getWildcardListeners($eventName)
    {
        
$wildcards = [];

        foreach (
$this->wildcards as $key => $listeners) {
            if (
Str::is($key$eventName)) {
                
$wildcards array_merge($wildcards$listeners);
            }
        }

        return 
$wildcards;
    }

    
/**
     * Sort the listeners for a given event by priority.
     *
     * @param  string  $eventName
     * @return void
     */
    
protected function sortListeners($eventName)
    {
        
// If listeners exist for the given event, we will sort them by the priority
        // so that we can call them in the correct order. We will cache off these
        // sorted event listeners so we do not have to re-sort on every events.
        
$listeners = isset($this->listeners[$eventName])
                            ? 
$this->listeners[$eventName] : [];

        if (
class_exists($eventNamefalse)) {
            foreach (
class_implements($eventName) as $interface) {
                if (isset(
$this->listeners[$interface])) {
                    
$listeners array_merge_recursive($listeners$this->listeners[$interface]);
                }
            }
        }

        if (
$listeners) {
            
krsort($listeners);

            
$this->sorted[$eventName] = call_user_func_array('array_merge'$listeners);
        } else {
            
$this->sorted[$eventName] = [];
        }
    }

    
/**
     * Register an event listener with the dispatcher.
     *
     * @param  mixed  $listener
     * @return mixed
     */
    
public function makeListener($listener)
    {
        return 
is_string($listener) ? $this->createClassListener($listener) : $listener;
    }

    
/**
     * Create a class based listener using the IoC container.
     *
     * @param  mixed  $listener
     * @return \Closure
     */
    
public function createClassListener($listener)
    {
        
$container $this->container;

        return function () use (
$listener$container) {
            return 
call_user_func_array(
                
$this->createClassCallable($listener$container), func_get_args()
            );
        };
    }

    
/**
     * Create the class based event callable.
     *
     * @param  string  $listener
     * @param  \Illuminate\Container\Container  $container
     * @return callable
     */
    
protected function createClassCallable($listener$container)
    {
        list(
$class$method) = $this->parseClassCallable($listener);

        if (
$this->handlerShouldBeQueued($class)) {
            return 
$this->createQueuedHandlerCallable($class$method);
        } else {
            return [
$container->make($class), $method];
        }
    }

    
/**
     * Parse the class listener into class and method.
     *
     * @param  string  $listener
     * @return array
     */
    
protected function parseClassCallable($listener)
    {
        
$segments explode('@'$listener);

        return [
$segments[0], count($segments) == $segments[1] : 'handle'];
    }

    
/**
     * Determine if the event handler class should be queued.
     *
     * @param  string  $class
     * @return bool
     */
    
protected function handlerShouldBeQueued($class)
    {
        try {
            return (new 
ReflectionClass($class))->implementsInterface(
                
'Illuminate\Contracts\Queue\ShouldQueue'
            
);
        } catch (
Exception $e) {
            return 
false;
        }
    }

    
/**
     * Create a callable for putting an event handler on the queue.
     *
     * @param  string  $class
     * @param  string  $method
     * @return \Closure
     */
    
protected function createQueuedHandlerCallable($class$method)
    {
        return function () use (
$class$method) {
            
$arguments $this->cloneArgumentsForQueueing(func_get_args());

            if (
method_exists($class'queue')) {
                
$this->callQueueMethodOnHandler($class$method$arguments);
            } else {
                
$this->resolveQueue()->push('Illuminate\Events\CallQueuedHandler@call', [
                    
'class' => $class'method' => $method'data' => serialize($arguments),
                ]);
            }
        };
    }

    
/**
     * Clone the given arguments for queueing.
     *
     * @param  array  $arguments
     * @return array
     */
    
protected function cloneArgumentsForQueueing(array $arguments)
    {
        return 
array_map(function ($a) {
            return 
is_object($a) ? clone $a $a;
        }, 
$arguments);
    }

    
/**
     * Call the queue method on the handler class.
     *
     * @param  string  $class
     * @param  string  $method
     * @param  array  $arguments
     * @return void
     */
    
protected function callQueueMethodOnHandler($class$method$arguments)
    {
        
$handler = (new ReflectionClass($class))->newInstanceWithoutConstructor();

        
$handler->queue($this->resolveQueue(), 'Illuminate\Events\CallQueuedHandler@call', [
            
'class' => $class'method' => $method'data' => serialize($arguments),
        ]);
    }

    
/**
     * Remove a set of listeners from the dispatcher.
     *
     * @param  string  $event
     * @return void
     */
    
public function forget($event)
    {
        if (
Str::contains($event'*')) {
            unset(
$this->wildcards[$event]);
        } else {
            unset(
$this->listeners[$event], $this->sorted[$event]);
        }
    }

    
/**
     * Forget all of the pushed listeners.
     *
     * @return void
     */
    
public function forgetPushed()
    {
        foreach (
$this->listeners as $key => $value) {
            if (
Str::endsWith($key'_pushed')) {
                
$this->forget($key);
            }
        }
    }

    
/**
     * Get the queue implementation from the resolver.
     *
     * @return \Illuminate\Contracts\Queue\Queue
     */
    
protected function resolveQueue()
    {
        return 
call_user_func($this->queueResolver);
    }

    
/**
     * Set the queue resolver implementation.
     *
     * @param  callable  $resolver
     * @return $this
     */
    
public function setQueueResolver(callable $resolver)
    {
        
$this->queueResolver $resolver;

        return 
$this;
    }
}