ManagementMailSendLogic
extends PageLogicBase
in package
コントローラから呼び出されるロジック基底処理。
Table of Contents
Constants
- TEMP_MESSAGES = 'temp_messages'
- SESSION_ALL_CLEAR = \PeServer\Core\Text::EMPTY
Properties
- $beginTimestamp : DateTimeImmutable
- ロジック開始日時。
- $environment : Environment
- $logger : ILogger
- ロガー。
- $result : array<string, mixed>
- コントローラ内結果データ。
- $stores : Stores
- $validator : Validator
- 検証処理。
- $content : DataContent|null
- 応答データ。
- $databaseConnection : IDatabaseConnection
- $errors : array<string, array<string|int, string>>
- 検証エラー。
- $httpResponseStatus : HttpStatus
- HTTPステータスコード。
- $keys : array<string|int, non-empty-string>
- 要素設定がなされている場合に応答データのキーをこの項目に固定。
- $mailer : AppMailer
- $request : HttpRequest
- リクエストデータ。
- $responseHeaders : array<non-empty-string, array<string|int, string>>
- 応答ヘッダ。
- $values : array<non-empty-string, mixed>
- 応答データ。
Methods
- __construct() : mixed
- 生成。
- addResponseHeader() : void
- 応答HTTPヘッダ追加。
- equalsResult() : bool
- ロジック結果の指定キー項目が指定値に一致するか。
- getContent() : DataContent
- 応答データ取得。
- getHttpStatus() : HttpStatus
- HTTP応答ステータスコードの取得。
- getResponseHeaders() : array<non-empty-string, array<string|int, string>>
- 応答ヘッダの取得。
- getViewData() : TemplateParameter
- View表示用データの取得。
- receiveErrorKind() : void
- 検証結果の失敗受領。
- receiveErrorMessage() : void
- エラーメッセージを受領。
- run() : bool
- ロジック処理。
- tryGetResult() : bool
- ロジック結果に指定キー項目が存在するか。
- addCommonError() : void
- addError() : void
- addTemporaryMessage() : void
- cancelSession() : void
- cleanup() : void
- clearErrors() : void
- executeImpl() : void
- 実行ロジック実装。
- existsSession() : bool
- getAuditUserInfo() : IAuditUserInfo|null
- 監査ログ用ユーザー情報の取得。
- getCookie() : string
- Cookie を取得。
- getFile() : UploadedFile
- getRequest() : string
- 要求データの取得。
- getRequestContent() : Binary
- 要求本文の生データを取得。
- getRequestJson() : array<string|int, mixed>
- 要求本文から JSON を取得。
- getSession() : mixed
- hasError() : bool
- 検証エラーが存在するか。
- openDatabase() : DatabaseContext
- データベース接続処理。
- peekTemporary() : mixed
- popTemporary() : mixed
- pushTemporary() : void
- registerParameterKeys() : void
- パラメータキーの設定。
- removeCookie() : void
- Cookie を削除。
- removeError() : void
- removeSession() : void
- removeTemporary() : void
- requireSession() : mixed
- restartSession() : void
- setContent() : void
- 応答データ設定。
- setCookie() : void
- Cookie を設定。
- setDownloadContent() : void
- ダウンロードデータ応答。
- setFileContent() : void
- ファイルを応答として設定。
- setHttpStatus() : void
- HTTP応答ステータスコードの設定。
- setJsonContent() : void
- JSON応答データ設定。
- setResponseJson() : void
- setSession() : void
- setTextContent() : void
- setValue() : void
- 応答データとして設定。
- shutdownSession() : void
- startup() : void
- validateImpl() : void
- 検証ロジック実装。
- validation() : void
- キーに対する一括検証処理。
- writeAuditLogCurrentUser() : int
- 現在ログインユーザーの監査ログ出力。
- writeAuditLogTargetUser() : int
- 対象ユーザーとして監査ログ出力。
- execute() : void
- 実行ロジック。
- validate() : void
- 検証ロジック実装。
- writeAuditLogCore() : int
- 監査ログ出力内部処理。
Constants
TEMP_MESSAGES
public
mixed
TEMP_MESSAGES
= 'temp_messages'
SESSION_ALL_CLEAR
protected
mixed
SESSION_ALL_CLEAR
= \PeServer\Core\Text::EMPTY
Properties
$beginTimestamp read-only
ロジック開始日時。
protected
DateTimeImmutable
$beginTimestamp
$environment read-only
protected
Environment
$environment
$logger read-only
ロガー。
protected
ILogger
$logger
$result
コントローラ内結果データ。
protected
array<string, mixed>
$result
= []
$stores read-only
protected
Stores
$stores
$validator
検証処理。
protected
Validator
$validator
$content
応答データ。
private
DataContent|null
$content
= null
$databaseConnection
private
IDatabaseConnection
$databaseConnection
Attributes
- #[Inject]
$errors
検証エラー。
private
array<string, array<string|int, string>>
$errors
= []
$httpResponseStatus
HTTPステータスコード。
private
HttpStatus
$httpResponseStatus
$keys
要素設定がなされている場合に応答データのキーをこの項目に固定。
private
array<string|int, non-empty-string>
$keys
= []
$mailer
private
AppMailer
$mailer
$request read-only
リクエストデータ。
private
HttpRequest
$request
$responseHeaders
応答ヘッダ。
private
array<non-empty-string, array<string|int, string>>
$responseHeaders
= []
$values
応答データ。
private
array<non-empty-string, mixed>
$values
= []
Methods
__construct()
生成。
public
__construct(LogicParameter $parameter, AppMailer $mailer) : mixed
Parameters
- $parameter : LogicParameter
-
ロジック用パラメータ。
- $mailer : AppMailer
addResponseHeader()
応答HTTPヘッダ追加。
public
addResponseHeader(non-empty-string $name, string $value) : void
Parameters
- $name : non-empty-string
- $value : string
equalsResult()
ロジック結果の指定キー項目が指定値に一致するか。
public
equalsResult(string $key, mixed $value) : bool
Parameters
- $key : string
- $value : mixed
Tags
Return values
boolgetContent()
応答データ取得。
public
getContent() : DataContent
Tags
Return values
DataContentgetHttpStatus()
HTTP応答ステータスコードの取得。
public
getHttpStatus() : HttpStatus
Return values
HttpStatusgetResponseHeaders()
応答ヘッダの取得。
public
getResponseHeaders() : array<non-empty-string, array<string|int, string>>
Return values
array<non-empty-string, array<string|int, string>>getViewData()
View表示用データの取得。
public
getViewData() : TemplateParameter
Return values
TemplateParameterreceiveErrorKind()
検証結果の失敗受領。
public
receiveErrorKind(string $key, int $kind, array<string|int, mixed> $parameters) : void
Parameters
- $key : string
- $kind : int
- $parameters : array<string|int, mixed>
receiveErrorMessage()
エラーメッセージを受領。
public
receiveErrorMessage(string $key, string $message) : void
Parameters
- $key : string
- $message : string
run()
ロジック処理。
public
run(LogicCallMode $callMode) : bool
Parameters
- $callMode : LogicCallMode
-
呼び出し。
Return values
booltryGetResult()
ロジック結果に指定キー項目が存在するか。
public
tryGetResult(string $key, mixed &$result) : bool
Parameters
- $key : string
- $result : mixed
Tags
Return values
booladdCommonError()
protected
addCommonError(string $message) : void
Parameters
- $message : string
addError()
protected
addError(string $key, string $message) : void
Parameters
- $key : string
- $message : string
addTemporaryMessage()
protected
addTemporaryMessage(string $message) : void
Parameters
- $message : string
cancelSession()
protected
cancelSession() : void
cleanup()
protected
cleanup(LogicCallMode $callMode) : void
Parameters
- $callMode : LogicCallMode
clearErrors()
protected
clearErrors() : void
executeImpl()
実行ロジック実装。
protected
executeImpl(LogicCallMode $callMode) : void
Parameters
- $callMode : LogicCallMode
-
呼び出し。
existsSession()
protected
existsSession(string $key) : bool
Parameters
- $key : string
Return values
boolgetAuditUserInfo()
監査ログ用ユーザー情報の取得。
protected
getAuditUserInfo() : IAuditUserInfo|null
ドメインロジックで明示的に使用しない想定。
Return values
IAuditUserInfo|nullgetCookie()
Cookie を取得。
protected
getCookie(string $key[, string $fallbackValue = Text::EMPTY ]) : string
Parameters
- $key : string
-
キー。
- $fallbackValue : string = Text::EMPTY
-
取得失敗時の値。
Return values
stringgetFile()
protected
getFile(string $key) : UploadedFile
Parameters
- $key : string
Return values
UploadedFilegetRequest()
要求データの取得。
protected
getRequest(string $key[, string $fallbackValue = Text::EMPTY ][, bool $trim = true ]) : string
Parameters
- $key : string
-
要求キー。
- $fallbackValue : string = Text::EMPTY
-
要求キーに存在しない場合の戻り値。
- $trim : bool = true
-
取得データをトリムするか。
Return values
string —要求データ。
getRequestContent()
要求本文の生データを取得。
protected
getRequestContent() : Binary
Return values
BinarygetRequestJson()
要求本文から JSON を取得。
protected
getRequestJson() : array<string|int, mixed>
Return values
array<string|int, mixed>getSession()
protected
getSession(string $key[, mixed $fallbackValue = null ]) : mixed
Parameters
- $key : string
- $fallbackValue : mixed = null
hasError()
検証エラーが存在するか。
protected
hasError() : bool
Return values
boolopenDatabase()
データベース接続処理。
protected
openDatabase() : DatabaseContext
Return values
DatabaseContextpeekTemporary()
protected
peekTemporary(string $key[, mixed $fallbackValue = null ]) : mixed
Parameters
- $key : string
- $fallbackValue : mixed = null
popTemporary()
protected
popTemporary(string $key[, mixed $fallbackValue = null ]) : mixed
Parameters
- $key : string
- $fallbackValue : mixed = null
pushTemporary()
protected
pushTemporary(string $key, mixed $value) : void
Parameters
- $key : string
- $value : mixed
registerParameterKeys()
パラメータキーの設定。
protected
registerParameterKeys(array<string|int, non-empty-string> $keys, bool $overwrite[, bool $initialize = true ]) : void
Parameters
- $keys : array<string|int, non-empty-string>
- $overwrite : bool
-
キー項目を要求データで上書きするか
- $initialize : bool = true
-
キー情報を初期化するか
removeCookie()
Cookie を削除。
protected
removeCookie(string $key) : void
Parameters
- $key : string
-
キー。
removeError()
protected
removeError(string $key) : void
Parameters
- $key : string
removeSession()
protected
removeSession(string $key) : void
Parameters
- $key : string
removeTemporary()
protected
removeTemporary(string $key) : void
Parameters
- $key : string
requireSession()
protected
requireSession(string $key) : mixed
Parameters
- $key : string
restartSession()
protected
restartSession() : void
setContent()
応答データ設定。
protected
setContent(non-empty-string $mime, string|array<string|int, mixed>|Binary $data) : void
Parameters
- $mime : non-empty-string
- $data : string|array<string|int, mixed>|Binary
Tags
setCookie()
Cookie を設定。
protected
setCookie(string $key, string $value[, CookieOptions|DateInterval, secure: ?bool, httpOnly: ?bool, sameSite: ?string}|null $options = null ]) : void
Parameters
- $key : string
-
キー。
- $value : string
-
設定値。
- $options : CookieOptions|DateInterval, secure: ?bool, httpOnly: ?bool, sameSite: ?string}|null = null
-
オプション。
setDownloadContent()
ダウンロードデータ応答。
protected
final setDownloadContent(non-empty-string $mime, string $fileName, Binary $data) : void
Parameters
- $mime : non-empty-string
- $fileName : string
- $data : Binary
Tags
setFileContent()
ファイルを応答として設定。
protected
setFileContent(string|null $mime, string $path) : void
Parameters
- $mime : string|null
- $path : string
Tags
setHttpStatus()
HTTP応答ステータスコードの設定。
protected
setHttpStatus(HttpStatus $httpStatus) : void
Parameters
- $httpStatus : HttpStatus
-
HTTPステータスコード。
setJsonContent()
JSON応答データ設定。
protected
final setJsonContent(array<string|int, mixed> $data) : void
Parameters
- $data : array<string|int, mixed>
setResponseJson()
protected
setResponseJson(ResponseJson $responseJson) : void
Parameters
- $responseJson : ResponseJson
setSession()
protected
setSession(string $key, mixed $value) : void
Parameters
- $key : string
- $value : mixed
setTextContent()
protected
final setTextContent(string $data) : void
Parameters
- $data : string
setValue()
応答データとして設定。
protected
setValue(non-empty-string $key, mixed $value) : void
Parameters
- $key : non-empty-string
- $value : mixed
Tags
shutdownSession()
protected
shutdownSession() : void
startup()
protected
startup(LogicCallMode $callMode) : void
Parameters
- $callMode : LogicCallMode
validateImpl()
検証ロジック実装。
protected
validateImpl(LogicCallMode $callMode) : void
Parameters
- $callMode : LogicCallMode
-
呼び出し。
validation()
キーに対する一括検証処理。
protected
validation(string $key, callable(string, string): void $callback[, array{default?: string, trim?: bool}|null $options = null ]) : void
Parameters
- $key : string
- $callback : callable(string, string): void
- $options : array{default?: string, trim?: bool}|null = null
-
オプション
- default: 取得失敗時の値。
- trim: 値をトリムするか。
writeAuditLogCurrentUser()
現在ログインユーザーの監査ログ出力。
protected
writeAuditLogCurrentUser(string $event[, mixed $info = null ][, IDatabaseContext|null $context = null ]) : int
※DBじゃなくてテキストファイルでいいかも
Parameters
- $event : string
- $info : mixed = null
- $context : IDatabaseContext|null = null
Return values
intwriteAuditLogTargetUser()
対象ユーザーとして監査ログ出力。
protected
writeAuditLogTargetUser(string $userId, string $event[, array<string|int, mixed>|null $info = null ][, IDatabaseContext|null $context = null ]) : int
Parameters
- $userId : string
- $event : string
- $info : array<string|int, mixed>|null = null
- $context : IDatabaseContext|null = null
Return values
intexecute()
実行ロジック。
private
execute(LogicCallMode $callMode) : void
Parameters
- $callMode : LogicCallMode
-
呼び出し。
validate()
検証ロジック実装。
private
validate(LogicCallMode $callMode) : void
Parameters
- $callMode : LogicCallMode
-
呼び出し。
writeAuditLogCore()
監査ログ出力内部処理。
private
writeAuditLogCore(string $userId, string $event, mixed|null $info, IDatabaseContext|null $context[, ISerializer|null $serializer = null ]) : int
Parameters
- $userId : string
- $event : string
- $info : mixed|null
- $context : IDatabaseContext|null
- $serializer : ISerializer|null = null