Skip to main content
Version: 9.x

Magical Call

The Magical Call

This magical function allows you to call any Action or Task run function, from anywhere. Using the Apiato::call() Facade.

The function call is mainly used for calling Apiato Actions from Controllers and for calling Apiato Tasks from Actions.

Each Action knows which UI called it, using $this->getUI(), this is useful for handling the same Action differently based on the UI type (Web or API). This will work when calling the Action from Controllers and Commands using the magical call() function.

Usage options

In the first argument you can pass the class full name, as follows App\Containers\User\Tasks\CreateUserTask::class, or you can pass the container name and class name, as follows User@CreateUserTask.

It is highly recommended to use Apiato caller style containerName@className as it helps to remove direct dependencies between containers. The function will verify the Container exist before calling the function and inform the user to install Container if not exist.

Note: When a class is directly called using his full name, a warning will be logged informing you to use the "apiato caller style". This info, however, can be disabled by changing the flag apiato.logging.log-wrong-apiato-caller-style in the Ship/Configs/apiato.php file accordingly.

<?php

// Call "AssignUserToRoleTask" Task from the "Authorization" Container using the apiato caller style
Apiato::call('Authorization@AssignUserToRoleTask');

// Call "AssignUserToRoleTask" Task from the "Authorization" Container using class full name.
// This will cause to add an INFO entry to the log file!
Apiato::call(\App\Containers\Authorization\Tasks\AssignUserToRoleTask::class);
Basic Usage
$foo = \Apiato\Core\Foundation\Facades\Apiato::call('Container@ActionOrTask');

Notes:

  • From Controllers and Actions you can use the $this->call('Container@ActionOrTask') instead of the Facade, but it's not recommended.
  • The magical call function accepts the class full namespace (\App\Containers\User\Tasks\GetAllUsersTask::class), and Apiato caller style (Containers@GetAllUsersTask).
  • There is also a transactionalCall() method available, that wraps everything in a DB::Transaction (see below).
Passing arguments to the run function
$foo = Apiato::call('Container@ActionOrTask', [$runArgument1, $runArgument2, $runArgument3]);
Calling other functions before calling the run
$foo = Apiato::call('Container@ActionOrTask', [$runArgument], ['otherFunction1', 'otherFunction2']);
Calling other functions and pass them arguments before calling the run
<?php
$foo = Apiato::call('Container@ActionOrTask', [$runArgument], [
[
'function1' => ['function1-argument1', 'function1-argument2']
],
[
'function2' => ['function2-argument1']
],
]);

$foo = Apiato::call('Container@ActionOrTask', [$runArgument], [
'function-without-argument',
[
'function1' => ['function1-argument1', 'function1-argument2']
],
]);

$foo = Apiato::call('Container@ActionOrTask', [], [
'function-without-argument',
[
'function1' => ['function1-argument1', 'function1-argument2']
],
'another-function-without-argument',
[
'function2' => ['function2-argument1', 'function2-argument2', 'function2-argument3']
],
]);

Transactional Magical Call

Sometimes, you want to wrap a call into one Database Transaction (see Laravel Documentation).

Consider the following example: You want to create a new Team and automatically assign yourself (i.e., your own User) to this newly created Team. Your CreateTeamAction may call a dedicated CreateTeamTask and a AssignMemberToTeamTask afterwards.

However, if the AssignMemberToTeamTask fails, for unknown reasons, you may want to "rollback" (i.e., remove) the newly created Team from the database in order to keep the database in a valid state.

That's where DB::transactions comes into play!

Apiato provides a transactionalCall($class, $params, $extraMethods) method with the similar parameters as already known from the call() method. Internally, this method calls this call() method anyways, but wraps it into a DB::transaction.

If any Exception occurs during the execution of the $class to be called, everything done in this context is automatically rolled-back from the database. However, respective operations on the file system (e.g., you may also have uploaded a profile picture for this Team already that needs to be removed in this case) need to be performed manually!

Typically, you may want to use the transactionalCall() on the Controller level!

Use case example

<?php

return Apiato::call('User@ListUsersTask', [], ['ordered']);
// can be called this way as well Apiato::call(ListUsersTask::class, [], ['ordered']);

return Apiato::call('User@ListUsersTask', [], ['ordered', 'clients']);

return Apiato::call('User@ListUsersTask', [], ['admins']);

return Apiato::call('User@ListUsersTask', [], ['admins', ['roles' => ['manager', 'employee']]]);

The ListUsersTask class

<?php

namespace App\Containers\User\Tasks;

use App\Containers\User\Data\Criterias\AdminsCriteria;
use App\Containers\User\Data\Criterias\ClientsCriteria;
use App\Containers\User\Data\Criterias\RoleCriteria;
use App\Containers\User\Data\Repositories\UserRepository;
use App\Ship\Criterias\Eloquent\OrderByCreationDateDescendingCriteria;
use App\Ship\Parents\Tasks\Task;

class ListUsersTask extends Task
{
private $userRepository;

public function __construct(UserRepository $userRepository)
{
$this->userRepository = $userRepository;
}

public function run()
{
return $this->userRepository->paginate();
}

public function clients()
{
$this->userRepository->pushCriteria(new ClientsCriteria());
}

public function admins()
{
$this->userRepository->pushCriteria(new AdminsCriteria());
}

public function ordered()
{
$this->userRepository->pushCriteria(new OrderByCreationDateDescendingCriteria());
}

public function withRole($roles)
{
$this->userRepository->pushCriteria(new RoleCriteria($roles));
}

}