forked from coala/corobo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
plugins: Move hard coded messages out of code
This begins to move the large chunks of hard coded messages out of code and into markdown template files. Closes coala#257
- Loading branch information
Showing
25 changed files
with
103 additions
and
170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,103 +1,40 @@ | ||
import re | ||
import glob | ||
import os.path | ||
|
||
from errbot import BotPlugin, re_botcmd | ||
from errbot.templating import tenv | ||
|
||
|
||
class Explain(BotPlugin): | ||
""" | ||
Explain various terms | ||
""" | ||
|
||
MSGS = { | ||
'review': 'After creating your `Pull Request`, it is under the review ' | ||
'process. This can be deduced from the `process/pending ' | ||
'review` label. Now you have to wait for the reviewers to ' | ||
'review your PR. You should *not* ask for reviews on our ' | ||
'Gitter channel - we review those PRs continuously.\n\n' | ||
'We\'re usually swamped with reviews, while you are waiting ' | ||
'**please review other people\'s PRs** at [coala.io/review]' | ||
'(https://coala.io/review): that helps you and will make ' | ||
'your review happen faster as well. As a rule of thumb, ' | ||
'*for every review you receive, give at least one review ' | ||
'to someone else!*\n\nFor a good review, look at every ' | ||
'commit on its own and place `ack <sha>`(commit is ready) or ' | ||
'`unack <sha>(commit needs work) needs work` comments on the ' | ||
'pull request, be sure to remove other spacing like tabs. If ' | ||
'you\'re done with a pull request, you can use ' | ||
'`{bot_prefix} mark wip <pull URL>` to mark it *work in ' | ||
'progress* finally.', | ||
'closes': 'We use bug prediction in coala which relies on the `Fixes` ' | ||
'keyword in commit messages. To get good results from that ' | ||
'we need to use `Closes` for normal issues instead of `Fixes`' | ||
' which should only be used for real bugs. (See also [the ' | ||
'commit message docs](https://coala.io/commit).) To change ' | ||
'your message you just use `git commit --amend` and then ' | ||
'`git push --force` the new commit to replace the old one.', | ||
'fixes': 'We use bug prediction in coala which relies on the `Fixes` ' | ||
'keyword in commit messages. To get good results from that ' | ||
'we need to use `Fixes` for bugfix issues instead of ' | ||
'`Closes`. (See also [the commit message docs]' | ||
'(https://coala.io/commit).) To change your message you ' | ||
'just use `git commit --amend` and then `git push --force` ' | ||
'the new commit to replace the old one.', | ||
'commit message': 'To change your message you just use `git commit ' | ||
'--amend` and then `git push --force` the new ' | ||
'commit to replace the old one.\n\nIf you\'re just ' | ||
'looking to fix an issue very quickly and not ' | ||
'interested in contributing to coala long term, we ' | ||
'can fix up the message for you - just tell us :).', | ||
'rebase': 'It looks like your PR is out of date and needs a rebase.' | ||
'\n\n[This page](https://coala.io/rebase) may help you to get' | ||
' started on this. We also have [a quick video tutorial on ' | ||
'how to rebase](https://asciinema.org/a/78683). That should ' | ||
'help you understand the basics of how it works and what you' | ||
'should be doing.\n\nIf you\'re just looking to fix an issue ' | ||
'very quickly and not interested in contributing to coala ' | ||
'long term, we can fix it up for you - just tell us :).', | ||
'cep': 'At coala we\'re using [cEP\'s (coala Enhancement Proposals)]' | ||
'(http://coala.io/cep) to define major design decisions - ' | ||
'they\'re a bit like PEP\'s but not quite as extensive and ' | ||
'obviously written with a lower case c.', | ||
'gitlab': 'We are currently evaluating on if we want to use GitLab for' | ||
'code hosting. That\'s why some repositories are already on ' | ||
'GitLab, if you want to participate in the migration ' | ||
'discussion, please add information [at our GitLab wiki page]' | ||
'(https://github.com/coala/coala/wiki/GitLab).', | ||
'google': 'Hey. This message was triggered because someone was too ' | ||
'lazy to type this *again*. Don\'t take it personally. ' | ||
'Please.\n\nWe all got to learn this: *use google*. Or ' | ||
'duckduckgo. Anything. The search engine that earned your ' | ||
'trust. You got a build error? Search for the first red ' | ||
'thing and google it. You got an exception? *Read the ' | ||
'message.* Search it. *Think.*\n\nKeep this in mind: *You*' | ||
'are sitting in front of the problem, not us. You will have ' | ||
'a much easier time solving it. That\'s why you should try ' | ||
'doing it first.', | ||
'promotion': 'To become part of the coala developers team, there ' | ||
'are a few steps you need to complete. The newcomer ' | ||
'process is as follows:\nYou will start as a newcomer, ' | ||
'which is kind of a trial. If you complete the following ' | ||
'tasks, you will become a developer at coala:\n\n- run ' | ||
'coala on a project of yours\n- merge a difficulty/' | ||
'newcomer Pull Request\n- review at least a difficulty/' | ||
'newcomer Pull Request\n- merge a difficulty/low Pull ' | ||
'Request\n- review at least a difficulty/low or higher ' | ||
'Pull Request' | ||
} | ||
files = glob.glob('plugins/templates/explanations/*.md') | ||
KNOWN_KEYS = [] | ||
for fname in files: | ||
KNOWN_KEYS.append(fname.replace( | ||
'plugins/templates/explanations/', '' | ||
).replace('.md', '')) | ||
|
||
ERROR_MSG = ( | ||
'Sorry, I only know about these things:\n- ' + | ||
'\n- '.join(MSGS.keys()) | ||
'\n- '.join(KNOWN_KEYS) | ||
) | ||
|
||
@re_botcmd(pattern=r'^explain\s+(\w+)(?:\s+to\s+@?([\w-]+))?$', | ||
re_cmd_name_help='explain <term>', | ||
flags=re.IGNORECASE) | ||
def explain(self, msg, match): | ||
"""Explain various terms.""" # Ignore QuotesBear | ||
return ('{}'.format('@{}: \n'.format(match.group(2)) | ||
if match.group(2) else '') + | ||
self.MSGS.get( | ||
match.group(1).lower(), | ||
self.ERROR_MSG | ||
).format(bot_prefix=self.bot_config.BOT_PREFIX)) | ||
response = '' | ||
filename = 'explanations/{}.md'.format(match.group(1).lower()) | ||
if match.group(1).lower() in self.KNOWN_KEYS: | ||
if match.group(2): | ||
response += '@{}: \n'.format(match.group(2)) | ||
response += tenv().get_template(filename).render() | ||
else: | ||
response = self.ERROR_MSG | ||
|
||
return response |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
1. A robot may not harm humanity, or, by inaction, allow humanity to come to harm. | ||
2. A robot may not injure a human being or, through inaction, allow a human being to come to harm. | ||
3. A robot must obey any orders given to it by human beings, except where such orders would conflict with the First Law. | ||
4. A robot must protect its own existence as long as such protection does not conflict with the First or Second Law. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
The issue is already assigned to someone. Please check if the assignee is still working on the issue, if not, you should ask for reassignment. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Can't create an issue for a repository that does not exist. Please ensure that the repository is available and owned by the org. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- You must be a member of the {{organization}} org to be assigned an issue. If you are not a member yet, just type Hello World and corobo will invite you. | ||
- A newcomer cannot be assigned to an issue with a difficulty level higher than newcomer or low difficulty. | ||
- A newcomer cannot be assigned to unlabelled issues. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@{{username}}, you are not a maintainer! Only maintainers can {{action}}. Nice try :poop: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
At coala we're using [cEP's (coala Enhancement Proposals)](http://coala.io/cep) to define major design decisions - they're a bit like PEP's but not quite as extensive and obviously written with a lower case c. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
We use bug prediction in coala which relies on the `Fixes` keyword in commit messages. To get good results from that we need to use `Closes` for normal issues instead of `Fixes` which should only be used for real bugs. (See also [the commit message docs](https://coala.io/commit).) To change your message you just use `git commit --amend` and then `git push --force` the new commit to replace the old one. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
To change your message you just use `git commit --amend` and then `git push --force` the new commit to replace the old one. | ||
|
||
If you're just looking to fix an issue very quickly and not interested in contributing to coala long term, we can fix up the message for you - just tell us :). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
We use bug prediction in coala which relies on the `Fixes` keyword in commit messages. To get good results from that we need to use `Fixes` for bugfix issues instead of `Closes`. (See also [the commit message docs](https://coala.io/commit).) To change your message you just use `git commit --amend` and then `git push --force` the new commit to replace the old one. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
We are currently evaluating on if we want to use GitLab for code hosting. That's why some repositories are already on GitLab, if you want to participate in the migration discussion, please add information [at our GitLab wiki page](https://github.com/coala/coala/wiki/GitLab). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Hey. This message was triggered because someone was too lazy to type this *again*. Don't take it personally. Please. | ||
|
||
We all got to learn this: *use google*. Or duckduckgo. Anything. The search engine that earned your trust. You got a build error? Search for the first red thing and google it. You got an exception? *Read the message.* Search it. *Think.* | ||
|
||
Keep this in mind: *You* are sitting in front of the problem, not us. You will have a much easier time solving it. That's why you should try doing it first. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
To become part of the coala developers team, there are a few steps you need to complete. The newcomer process is as follows: | ||
You will start as a newcomer, which is kind of a trial. If you complete the following tasks, you will become a developer at coala: | ||
|
||
- run coala on a project of yours | ||
- merge a difficulty/newcomer Pull Request | ||
- review at least a difficulty/newcomer Pull Request | ||
- merge a difficulty/low Pull Request | ||
- review at least a difficulty/low or higher Pull Request |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
It looks like your PR is out of date and needs a rebase. | ||
|
||
[This page](https://coala.io/rebase) may help you to get started on this. We also have [a quick video tutorial on how to rebase](https://asciinema.org/a/78683). That should help you understand the basics of how it works and what you should be doing. | ||
|
||
If you're just looking to fix an issue very quickly and not interested in contributing to coala long term, we can fix it up for you - just tell us :). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
After creating your `Pull Request`, it is under the review process. This can be deduced from the `process/pending review` label. Now you have to wait for the reviewers to review your PR. You should *not* ask for reviews on our Gitter channel - we review those PRs continuously. | ||
|
||
We're usually swamped with reviews, while you are waiting **please review other people's PRs** at [coala.io/review](https://coala.io/review): that helps you and will make your review happen faster as well. As a rule of thumb, *for every review you receive, give at least one review to someone else!* | ||
|
||
For a good review, look at every commit on its own and place `ack <sha>` (commit is ready) or `unack <sha>` (commit needs work) comments on the pull request, be sure to remove other spacing like tabs. If you're done with a pull request, you can use `{bot_prefix} mark wip <pull URL>` to mark it *work in progress* finally. |
Oops, something went wrong.