-
Notifications
You must be signed in to change notification settings - Fork 690
Expand file tree
/
Copy pathRequest.php
More file actions
153 lines (138 loc) · 3.32 KB
/
Request.php
File metadata and controls
153 lines (138 loc) · 3.32 KB
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
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license https://craftcms.github.io/license/
*/
namespace craft\console;
use Craft;
use craft\base\RequestTrait;
/**
* @inheritdoc
* @author Pixel & Tonic, Inc. <[email protected]>
* @since 3.0.0
*/
class Request extends \yii\console\Request
{
use RequestTrait;
/**
* @inheritdoc
*/
public function init(): void
{
parent::init();
// Set the @webroot and @web aliases, in case they are needed
if (Craft::getRootAlias('@webroot') === false) {
// see if it's any of the usual suspects
$dir = dirname($this->getScriptFile());
foreach (['web', 'public', 'public_html', 'html'] as $folder) {
if (is_dir($dir . DIRECTORY_SEPARATOR . $folder)) {
$dir .= DIRECTORY_SEPARATOR . $folder;
break;
}
}
Craft::setAlias('@webroot', $dir);
$this->isWebrootAliasSetDynamically = true;
}
if (Craft::getRootAlias('@web') === false) {
Craft::setAlias('@web', '/');
$this->isWebAliasSetDynamically = true;
}
}
/**
* Returns whether the control panel was requested. (Narrator: It wasn't.)
*
* @return bool
*/
public function getIsCpRequest(): bool
{
return false;
}
/**
* Returns whether the front end site was requested. (Narrator: It wasn't.)
*
* @return bool
*/
public function getIsSiteRequest(): bool
{
return false;
}
/**
* Returns whether a specific controller action was requested. (Narrator: There wasn't.)
*
* @return bool
*/
public function getIsActionRequest(): bool
{
return false;
}
/**
* Returns whether this was a Login request.
*
* @return bool
* @since 3.2.0
*/
public function getIsLoginRequest(): bool
{
return false;
}
/**
* Returns whether this is an element preview request.
*
* @return bool
* @since 3.2.1
*/
public function getIsPreview(): bool
{
return false;
}
/**
* Returns whether this is a classic Live Preview request.
*
* @return bool Whether this is a Live Preview request.
* @deprecated in 3.2.0
*/
public function getIsLivePreview(): bool
{
return false;
}
/**
* Returns whether the request initially had a token.
*
* @return bool
* @since 3.6.0
*/
public function getHadToken(): bool
{
return false;
}
/**
* Returns the token submitted with the request, if there is one.
*
* @return string|null The token, or `null` if there isn’t one.
* @since 3.2.0
*/
public function getToken(): ?string
{
return null;
}
/**
* Sets the token value.
*
* @param string|null $token
* @since 3.6.0
*/
public function setToken(?string $token): void
{
}
/**
* Returns the site token submitted with the request, if there is one.
*
* @return string|null The token, or `null` if there isn’t one.
* @since 3.6.0
*/
public function getSiteToken(): ?string
{
return null;
}
}