Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
TelegramBot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
TelegramBot
Commits
8745eecd
Commit
8745eecd
authored
Dec 12, 2016
by
Armando Lüscher
Committed by
GitHub
Dec 12, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #342 from jacklul/botan-monolog
Botan integration - quick improvements
parents
7d38e1e5
516cd7a2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
4 deletions
+11
-4
Botan.php
src/Botan.php
+11
-4
No files found.
src/Botan.php
View file @
8745eecd
...
...
@@ -110,6 +110,15 @@ class Botan
}
}
}
}
elseif
(
isset
(
$obj
[
'edited_message'
]))
{
$data
=
$obj
[
'edited_message'
];
$event_name
=
'Edited Message'
;
}
elseif
(
isset
(
$obj
[
'channel_post'
]))
{
$data
=
$obj
[
'channel_post'
];
$event_name
=
'Channel Message'
;
}
elseif
(
isset
(
$obj
[
'edited_channel_post'
]))
{
$data
=
$obj
[
'edited_channel_post'
];
$event_name
=
'Edited Channel Message'
;
}
elseif
(
isset
(
$obj
[
'inline_query'
]))
{
$data
=
$obj
[
'inline_query'
];
$event_name
=
'Inline Query'
;
...
...
@@ -146,7 +155,7 @@ class Botan
$responseData
=
json_decode
(
$response
,
true
);
if
(
$responseData
[
'status'
]
!==
'accepted'
)
{
error_lo
g
(
'Botan.io API replied with error: '
.
$response
);
TelegramLog
::
debu
g
(
'Botan.io API replied with error: '
.
$response
);
}
return
$responseData
;
...
...
@@ -195,9 +204,7 @@ class Botan
if
(
!
filter_var
(
$response
,
FILTER_VALIDATE_URL
)
===
false
)
{
BotanDB
::
insertShortUrl
(
$user_id
,
$url
,
$response
);
}
else
{
// @TODO: Add telegram log
error_log
(
'Botan.io API replied with error: '
.
$response
);
TelegramLog
::
debug
(
'Botan.io API replied with error: '
.
$response
);
return
$url
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment