WIP: feature_genfix #9
@ -1,12 +1,3 @@
|
|||||||
#Possible actions:
|
|
||||||
# - create repository
|
|
||||||
# - delete repository
|
|
||||||
# - list repositories
|
|
||||||
# - list respository issues
|
|
||||||
# - list repository pull requests
|
|
||||||
# - list notifications
|
|
||||||
# - list repository tests
|
|
||||||
|
|
||||||
repositoriesMock = ["repo1", "repo2", "repo3"]
|
repositoriesMock = ["repo1", "repo2", "repo3"]
|
||||||
issuesMock = [
|
issuesMock = [
|
||||||
{
|
{
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
from apimock import *
|
||||||
import difflib as dl
|
import difflib as dl
|
||||||
import random
|
import random
|
||||||
import sys
|
import sys
|
||||||
@ -37,7 +38,7 @@ bye = [
|
|||||||
"Do zobaczenia",
|
"Do zobaczenia",
|
||||||
"Do widzenia",
|
"Do widzenia",
|
||||||
"Miłego dnia",
|
"Miłego dnia",
|
||||||
"Do widzenia i miłego dnia"
|
"Do widzenia i miłego dnia",
|
||||||
"Narazie"
|
"Narazie"
|
||||||
]
|
]
|
||||||
|
|
||||||
@ -72,6 +73,31 @@ def generator_jezyka_nautalnego(frame, tactic, state, text):
|
|||||||
print()
|
print()
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
|
elif tactic[0] == 'ANSWER' and tactic[1] == 'issues':
|
||||||
|
print("Lista issues w repozytorium " + tactic[2][0][1] + ":")
|
||||||
|
issues = listRepositoryIssues(tactic[2][0][1])
|
||||||
|
for issue in issues:
|
||||||
|
print(issue['name'])
|
||||||
|
print(issue['description'])
|
||||||
|
print(issue['status'])
|
||||||
|
print()
|
||||||
|
|
||||||
|
elif tactic[0] == 'ANSWER' and tactic[1] == 'pullrequest':
|
||||||
|
print("Lista pull requestów w repozytorium " + tactic[2][0][1] + ":")
|
||||||
|
prs = listRepositoryPullRequests(tactic[2][0][1])
|
||||||
|
for pr in prs:
|
||||||
|
print(pr['name'])
|
||||||
|
print(pr['description'])
|
||||||
|
print(pr['state'])
|
||||||
|
print()
|
||||||
|
|
||||||
|
elif tactic == 'hello':
|
||||||
|
print(random.choice(welcome))
|
||||||
|
|
||||||
|
elif tactic[0] == 'QUESTION' and tactic[1][0] == 'repo':
|
||||||
|
print("Dodaj nazwę repozytorium na końcu komendy")
|
||||||
|
print("np. w nazwarepozytorium")
|
||||||
|
|
||||||
else:
|
else:
|
||||||
print(tactic)
|
print(tactic)
|
||||||
|
|
||||||
|
@ -56,6 +56,8 @@ def validate_repo(repo):
|
|||||||
|
|
||||||
def long_thread(state):
|
def long_thread(state):
|
||||||
act = state['current_context']
|
act = state['current_context']
|
||||||
|
if act == None:
|
||||||
|
return 'null'
|
||||||
for topic in state['topics']:
|
for topic in state['topics']:
|
||||||
if act == topic['act']:
|
if act == topic['act']:
|
||||||
slots = topic['slots']
|
slots = topic['slots']
|
||||||
@ -66,7 +68,7 @@ def long_thread(state):
|
|||||||
opt_args = add_facts(opt_args, facts)
|
opt_args = add_facts(opt_args, facts)
|
||||||
required_empty = check_req(req_args)
|
required_empty = check_req(req_args)
|
||||||
if required_empty:
|
if required_empty:
|
||||||
return "QESTION", required_empty[0] #slot do uzupełnienia
|
return "QUESTION", required_empty[0] #slot do uzupełnienia
|
||||||
return "ANSWER", act, req_args, opt_args #wyświetl użytkownikowi
|
return "ANSWER", act, req_args, opt_args #wyświetl użytkownikowi
|
||||||
|
|
||||||
def check_req(req_args):
|
def check_req(req_args):
|
||||||
|
Loading…
Reference in New Issue
Block a user