$ 46.56
Availability |
Odoo Online
Odoo.sh
On Premise
|
Odoo Apps Dependencies |
•
Contacts Directory (contacts)
• Discuss (mail) |
Community Apps Dependencies | Show |
Lines of code | 389 |
Technical Name |
deploy_channel_notice |
License | OPL-1 |
Website | https://github.com/ctac1412 |
Versions | 11.0 12.0 13.0 14.0 |
Deploy Channel Notice (Skype, Telegram)
Use it in your deploy scenarion to notificate users easy!
Description
How often, during a deployment or server reboot, do messages from users instantly arrive:
- The base is not working!
- The server is not responding!
- Is this a release now?
- How long's this gonna take?
It is easy to notify users about the deployment, as well as about the subsequent launch of the server in the associated Telegram and Skype channels!
Use HTTP endpoint with configured channels and cron in your odoo.
Or alternatively, use the python CLI script directly from your CI/CD.
This module is extension from Social Channel Notice (Skype, Telegram)
Bugs, features request
If you have questions, need any help or have a customizations request, please contact us at tiulenev.st@yandex.ru.
Installation and Configuration
- Install module with requirements.
- Get Token from channel settings.
- Send request to odoo. PROFIT
- You can send custom message by 'deploy_msg' endpoint parametr OR set in channel settings.
- You can send custom after-reload message by 'after_deploy_msg' endpoint parametr OR set in channel settings.
- Use f-string to set message!
Use by any HTTP requests. For example:
- python: requests.get('http://localhost:8069/deploy_notice_channel/send', { 'token':token })
- curl: curl http://http://localhost:14019/deploy_notice_channel/send?token=$TOKEN
- js: fetch(`http://localhost:14019/deploy_notice_channel/send?token=${token}`)
Example CD/CD gitlab with defined channel setting in base.
...
deploy:
stage: deploy
when: manual
tags:
- deploy-runner
script:
- curl $ODOO_DOMAIN/deploy_notice_channel/send?token=$TOKEN
- sh ./script/deploy.sh deploy
only:
refs:
- master
...

Odoo Proprietary License v1.0 This software and associated files (the "Software") may only be used (executed, modified, executed after modifications) if you have purchased a valid license from the authors, typically via Odoo Apps, or if you have received a written agreement from the authors of the Software (see the COPYRIGHT file). You may develop Odoo modules that use the Software as a library (typically by depending on it, importing it and using its resources), but without copying any source code or material from the Software. You may distribute those modules under the license of your choice, provided that this license is compatible with the terms of the Odoo Proprietary License (For example: LGPL, MIT, or proprietary licenses similar to this one). It is forbidden to publish, distribute, sublicense, or sell copies of the Software or modified copies of the Software. The above copyright notice and this permission notice must be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please log in to comment on this module