telegram.php 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Your Telegram Bots
  6. |--------------------------------------------------------------------------
  7. | You may use multiple bots at once using the manager class. Each bot
  8. | that you own should be configured here.
  9. |
  10. | Here are each of the telegram bots config parameters.
  11. |
  12. | Supported Params:
  13. |
  14. | - name: The *personal* name you would like to refer to your bot as.
  15. |
  16. | - username: Your Telegram Bot's Username.
  17. | Example: (string) 'BotFather'.
  18. |
  19. | - token: Your Telegram Bot's Access Token.
  20. Refer for more details: https://core.telegram.org/bots#botfather
  21. | Example: (string) '123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11'.
  22. |
  23. | - commands: (Optional) Commands to register for this bot,
  24. | Supported Values: "Command Group Name", "Shared Command Name", "Full Path to Class".
  25. | Default: Registers Global Commands.
  26. | Example: (array) [
  27. | 'admin', // Command Group Name.
  28. | 'status', // Shared Command Name.
  29. | Acme\Project\Commands\BotFather\HelloCommand::class,
  30. | Acme\Project\Commands\BotFather\ByeCommand::class,
  31. | ]
  32. */
  33. 'bots' => [
  34. 'mybot' => [
  35. 'username' => 'TelegramBot',
  36. 'token' => env('TELEGRAM_BOT_TOKEN', 'YOUR-BOT-TOKEN'),
  37. 'certificate_path' => env('TELEGRAM_CERTIFICATE_PATH', 'YOUR-CERTIFICATE-PATH'),
  38. 'webhook_url' => env('TELEGRAM_WEBHOOK_URL', 'YOUR-BOT-WEBHOOK-URL'),
  39. 'commands' => [
  40. //Acme\Project\Commands\MyTelegramBot\BotCommand::class
  41. ],
  42. ],
  43. // 'mySecondBot' => [
  44. // 'username' => 'AnotherTelegram_Bot',
  45. // 'token' => '123456:abc',
  46. // ],
  47. ],
  48. /*
  49. |--------------------------------------------------------------------------
  50. | Default Bot Name
  51. |--------------------------------------------------------------------------
  52. |
  53. | Here you may specify which of the bots you wish to use as
  54. | your default bot for regular use.
  55. |
  56. */
  57. 'default' => 'mybot',
  58. /*
  59. |--------------------------------------------------------------------------
  60. | Asynchronous Requests [Optional]
  61. |--------------------------------------------------------------------------
  62. |
  63. | When set to True, All the requests would be made non-blocking (Async).
  64. |
  65. | Default: false
  66. | Possible Values: (Boolean) "true" OR "false"
  67. |
  68. */
  69. 'async_requests' => env('TELEGRAM_ASYNC_REQUESTS', false),
  70. /*
  71. |--------------------------------------------------------------------------
  72. | HTTP Client Handler [Optional]
  73. |--------------------------------------------------------------------------
  74. |
  75. | If you'd like to use a custom HTTP Client Handler.
  76. | Should be an instance of \Telegram\Bot\HttpClients\HttpClientInterface
  77. |
  78. | Default: GuzzlePHP
  79. |
  80. */
  81. 'http_client_handler' => null,
  82. /*
  83. |--------------------------------------------------------------------------
  84. | Resolve Injected Dependencies in commands [Optional]
  85. |--------------------------------------------------------------------------
  86. |
  87. | Using Laravel's IoC container, we can easily type hint dependencies in
  88. | our command's constructor and have them automatically resolved for us.
  89. |
  90. | Default: true
  91. | Possible Values: (Boolean) "true" OR "false"
  92. |
  93. */
  94. 'resolve_command_dependencies' => true,
  95. /*
  96. |--------------------------------------------------------------------------
  97. | Register Telegram Global Commands [Optional]
  98. |--------------------------------------------------------------------------
  99. |
  100. | If you'd like to use the SDK's built in command handler system,
  101. | You can register all the global commands here.
  102. |
  103. | Global commands will apply to all the bots in system and are always active.
  104. |
  105. | The command class should extend the \Telegram\Bot\Commands\Command class.
  106. |
  107. | Default: The SDK registers, a help command which when a user sends /help
  108. | will respond with a list of available commands and description.
  109. |
  110. */
  111. 'commands' => [
  112. Telegram\Bot\Commands\HelpCommand::class,
  113. ],
  114. /*
  115. |--------------------------------------------------------------------------
  116. | Command Groups [Optional]
  117. |--------------------------------------------------------------------------
  118. |
  119. | You can organize a set of commands into groups which can later,
  120. | be re-used across all your bots.
  121. |
  122. | You can create 4 types of groups:
  123. | 1. Group using full path to command classes.
  124. | 2. Group using shared commands: Provide the key name of the shared command
  125. | and the system will automatically resolve to the appropriate command.
  126. | 3. Group using other groups of commands: You can create a group which uses other
  127. | groups of commands to bundle them into one group.
  128. | 4. You can create a group with a combination of 1, 2 and 3 all together in one group.
  129. |
  130. | Examples shown below are by the group type for you to understand each of them.
  131. */
  132. 'command_groups' => [
  133. /* // Group Type: 1
  134. 'commmon' => [
  135. Acme\Project\Commands\TodoCommand::class,
  136. Acme\Project\Commands\TaskCommand::class,
  137. ],
  138. */
  139. /* // Group Type: 2
  140. 'subscription' => [
  141. 'start', // Shared Command Name.
  142. 'stop', // Shared Command Name.
  143. ],
  144. */
  145. /* // Group Type: 3
  146. 'auth' => [
  147. Acme\Project\Commands\LoginCommand::class,
  148. Acme\Project\Commands\SomeCommand::class,
  149. ],
  150. 'stats' => [
  151. Acme\Project\Commands\UserStatsCommand::class,
  152. Acme\Project\Commands\SubscriberStatsCommand::class,
  153. Acme\Project\Commands\ReportsCommand::class,
  154. ],
  155. 'admin' => [
  156. 'auth', // Command Group Name.
  157. 'stats' // Command Group Name.
  158. ],
  159. */
  160. /* // Group Type: 4
  161. 'myBot' => [
  162. 'admin', // Command Group Name.
  163. 'subscription', // Command Group Name.
  164. 'status', // Shared Command Name.
  165. 'Acme\Project\Commands\BotCommand' // Full Path to Command Class.
  166. ],
  167. */
  168. ],
  169. /*
  170. |--------------------------------------------------------------------------
  171. | Shared Commands [Optional]
  172. |--------------------------------------------------------------------------
  173. |
  174. | Shared commands let you register commands that can be shared between,
  175. | one or more bots across the project.
  176. |
  177. | This will help you prevent from having to register same set of commands,
  178. | for each bot over and over again and make it easier to maintain them.
  179. |
  180. | Shared commands are not active by default, You need to use the key name to register them,
  181. | individually in a group of commands or in bot commands.
  182. | Think of this as a central storage, to register, reuse and maintain them across all bots.
  183. |
  184. */
  185. 'shared_commands' => [
  186. // 'start' => Acme\Project\Commands\StartCommand::class,
  187. // 'stop' => Acme\Project\Commands\StopCommand::class,
  188. // 'status' => Acme\Project\Commands\StatusCommand::class,
  189. ],
  190. ];