19 declare(strict_types=1);
46 $this->main_tpl = $DIC->ui()->mainTemplate();
48 $this->
http = $DIC->http();
49 $this->
ctrl = $DIC[
'ilCtrl'];
50 $this->
user = $DIC[
'ilUser'];
51 $this->
lng = $DIC[
'lng'];
56 $this->
lng->loadLanguageModule(
'buddysystem');
64 !self::$isFrontendInitialized &&
66 !$DIC->user()->isAnonymous()
68 $DIC->language()->loadLanguageModule(
'buddysystem');
73 $config->http_post_url = $DIC->ctrl()->getFormActionByClass([
74 ilUIPluginRouterGUI::class,
76 ],
'',
'',
true,
false);
77 $config->transition_state_cmd =
'transitionAsync';
78 $page->
addOnLoadCode(
'il.BuddySystem.setConfig(' . json_encode($config, JSON_THROW_ON_ERROR) .
');');
83 $page->
addOnLoadCode(
'il.BuddySystemButton.setConfig(' . json_encode($btn_config, JSON_THROW_ON_ERROR) .
');');
86 self::$isFrontendInitialized =
true;
95 if ($this->
user->isAnonymous()) {
96 throw new RuntimeException(
'This controller only accepts requests of logged in users');
99 $this->{$this->
ctrl->getCmd() .
'Command'}();
105 case self::BS_REQUEST_HTTP_POST:
106 $body = $this->
http->request()->getParsedBody();
107 return (isset($body[$key]) && is_string($body[$key]) && $body[$key] !==
'');
109 case self::BS_REQUEST_HTTP_GET:
111 $query = $this->
http->request()->getQueryParams();
112 return (isset($query[$key]) && is_string($query[$key]) && $query[$key] !==
'');
120 'buddy_relation_requested',
126 throw new ilException(
'The requested user does not want to get contact requests');
144 string $positiveFeedbackLanguageId,
145 ?callable $onBeforeExecute =
null 148 $this->main_tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'buddy_bs_action_not_possible'),
true);
149 $this->
ctrl->returnToParent($this);
152 $usrId = (
int) $this->
http->request()->getQueryParams()[
'user_id'];
156 if (
null !== $onBeforeExecute) {
161 $this->main_tpl->setOnScreenMessage(
'success', $this->
lng->txt($positiveFeedbackLanguageId),
true);
163 $this->main_tpl->setOnScreenMessage(
'info', sprintf(
164 $this->
lng->txt($e->getMessage()),
168 $this->main_tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'buddy_bs_action_not_possible'),
true);
179 if (!$this->
ctrl->isAsynch()) {
195 $usr_id = (
int) $this->
http->request()->getParsedBody()[
'usr_id'];
200 'You cannot perform a state transition for the anonymous user (id: %s)',
208 'You cannot perform a state transition for a non existing user (id: %s)',
213 $relation = $this->buddyList->getRelationByUserId($usr_id);
220 throw new ilException(
'The requested user does not want to get contact requests');
227 $response->message = sprintf($this->
lng->txt($e->getMessage()), $login);
229 $response->message = $this->
lng->txt(
'buddy_bs_action_not_possible');
233 $response->state_html = $this->stateFactory->getStateButtonRendererByOwnerAndRelation(
234 $this->buddyList->getOwnerId(),
238 $response->message = $this->
lng->txt(
'buddy_bs_action_not_possible');
241 $this->
http->saveResponse(
242 $this->
http->response()
243 ->withAddedHeader(
'Content-Type',
'application/json')
246 $this->
http->sendResponse();
247 $this->
http->close();
252 if (isset($this->
http->request()->getServerParams()[
'HTTP_REFERER'])) {
253 $redirectUrl = $this->
http->request()->getServerParams()[
'HTTP_REFERER'];
254 $urlParts = parse_url($redirectUrl);
256 if (isset($urlParts[
'path'])) {
257 $script = basename($urlParts[
'path'],
'.php');
258 if ($script ===
'login') {
259 $this->
ctrl->returnToParent($this);
261 $redirectUrl = ltrim(basename($urlParts[
'path']),
'/');
262 if (isset($urlParts[
'query'])) {
263 $redirectUrl .=
'?' . $urlParts[
'query'];
268 if ($redirectUrl !==
'') {
269 $this->
ctrl->redirectToURL($redirectUrl);
273 $this->
ctrl->returnToParent($this);
readonly ilGlobalTemplateInterface $main_tpl
static getInstance(?ilLanguage $lng=null)
Class ilBuddySystemRelationStateFactory.
ilBuddySystemRelationStateFactory $stateFactory
Interface Observer Contains several chained tasks and infos about them.
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
addOnLoadCode(string $a_code, int $a_batch=2)
Add on load code.
static _lookupPref(int $a_usr_id, string $a_keyword)
Class ilBuddySystemException.
Class ilBuddySystemRelationStateTransitionException.
const BS_REQUEST_HTTP_POST
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static http()
Fetches the global http state from ILIAS.
Class ilBuddySystemRelationStateAlreadyGivenException.
static initializeFrontend(ilGlobalTemplateInterface $page)
static _isAnonymous(int $usr_id)
transitionAsyncCommand()
Performs a state transition based on the request action.
addJavaScript(string $a_js_file, bool $a_add_version_parameter=true, int $a_batch=2)
Add a javascript file that should be included in the header.
static yn2tf(string $a_yn)
const BS_REQUEST_HTTP_GET
static bool $isFrontendInitialized
transitionCommand(string $cmd, string $positiveFeedbackLanguageId, ?callable $onBeforeExecute=null)
isRequestParameterGiven(string $key, int $type)
static getInstanceByGlobalUser(?ilObjUser $user=null)
static _lookupLogin(int $a_user_id)