aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/sprinkles/account/src/Twig/AccountExtension.php
blob: fc94a1ab72e4298a2306b07eac9e834b1bd17fd5 (plain) (blame)
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
<?php
/**
 * UserFrosting (http://www.userfrosting.com)
 *
 * @link      https://github.com/userfrosting/UserFrosting
 * @license   https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
 */

namespace UserFrosting\Sprinkle\Account\Twig;

use Interop\Container\ContainerInterface;
use RocketTheme\Toolbox\ResourceLocator\UniformResourceLocator;
use Slim\Http\Uri;

/**
 * Extends Twig functionality for the Account sprinkle.
 *
 * @author Alex Weissman (https://alexanderweissman.com)
 */
class AccountExtension extends \Twig_Extension implements \Twig_Extension_GlobalsInterface
{

    protected $services;
    protected $config;

    public function __construct(ContainerInterface $services) {
        $this->services = $services;
        $this->config = $services->config;
    }

    public function getName() {
        return 'userfrosting/account';
    }

    public function getFunctions() {
        return array(
            // Add Twig function for checking permissions during dynamic menu rendering
            new \Twig_SimpleFunction('checkAccess', function ($slug, $params = []) {
                $authorizer = $this->services->authorizer;
                $currentUser = $this->services->currentUser;

                return $authorizer->checkAccess($currentUser, $slug, $params);
            }),
            new \Twig_SimpleFunction('checkAuthenticated', function () {
                $authenticator = $this->services->authenticator;
                return $authenticator->check();
            })
        );
    }

    public function getGlobals() {
        try {
            $currentUser = $this->services->currentUser;
        } catch (\Exception $e) {
            $currentUser = NULL;
        }

        return [
            'current_user' => $currentUser
        ];
    }
}