1 | <?php |
||
13 | final class Detect |
||
14 | { |
||
15 | |||
16 | /** |
||
17 | * @var Request |
||
18 | */ |
||
19 | private $request; |
||
20 | |||
21 | /** |
||
22 | * @var Config |
||
23 | */ |
||
24 | private $config; |
||
25 | |||
26 | /** |
||
27 | * @var Locale |
||
28 | */ |
||
29 | private $locale; |
||
30 | |||
31 | /** |
||
32 | * Current scope of locales |
||
33 | * @var Scope |
||
34 | */ |
||
35 | private $scope; |
||
36 | |||
37 | 73 | public function __construct(Request $request, Config $config) |
|
42 | |||
43 | /** |
||
44 | * Detect the locale from current request url. |
||
45 | * Once the locale has been determined, it will be set as the application locale. |
||
46 | * A locale is only validated if it is present within the current locale scope. |
||
47 | * |
||
48 | * Detection honours following priority: |
||
49 | * 1) If locale is found in request as query parameter e.g. ?locale=fr, |
||
50 | * 2) If locale is found in request url, either from host or segment eg. nl.example.com, example.nl or example.com/nl |
||
51 | * 3) Otherwise set locale to our fallback language (app.locale) |
||
52 | */ |
||
53 | 28 | public function detectLocale(): self |
|
75 | |||
76 | 1 | public function getLocale(): Locale |
|
82 | |||
83 | 72 | public function getScope(): Scope |
|
89 | |||
90 | /** |
||
91 | * This is handy for setting allowed scope via other source than config file. |
||
92 | * TODO: we should allow to set config from other source such as db as well so |
||
93 | * this can be configurable from a cms. |
||
94 | * |
||
95 | * @param Scope|null $scope |
||
96 | * @return $this |
||
97 | */ |
||
98 | 11 | public function setScope(Scope $scope = null) |
|
104 | |||
105 | 69 | private function detectScope() |
|
109 | } |
||
110 |