. * * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU Affero General Public License version 3. * * In accordance with Section 7(b) of the GNU Affero General Public License version 3, * these Appropriate Legal Notices must retain the display of the "EspoCRM" word. ************************************************************************/ namespace Espo\EntryPoints; use Espo\Core\Exceptions\BadRequest; use Espo\Core\EntryPoint\EntryPoint; use Espo\Core\EntryPoint\Traits\NoAuth; use Espo\Core\Api\Request; use Espo\Core\Api\Response; use Espo\Core\Utils\Client\ActionRenderer; class LoginAs implements EntryPoint { use NoAuth; public function __construct(private ActionRenderer $actionRenderer) {} /** * @throws BadRequest */ public function run(Request $request, Response $response): void { $anotherUser = $request->getQueryParam('anotherUser'); if (!$anotherUser) { throw new BadRequest("No anotherUser."); } $this->actionRenderer->write( $response, ActionRenderer\Params::create('controllers/login-as', 'login') ->withData([ 'anotherUser' => $anotherUser, 'username' => $request->getQueryParam('username'), ]) ->withInitAuth() ); } }