Exemplo n.º 1
0
def get_information_from_api(id):
    from people.models import Member
    repository = Repository.objects.get(id=id)

    if repository.repository_type == 1:
        commits = Commits(user=repository.user, repo=repository.repo)
        commits = commits.list()

        for commit in commits.iterator():
            if Commit.objects.filter(sha=commit.sha).exists():
                continue

            cm = Commit(
                **{
                    'repository': repository,
                    'sha': commit.sha,
                    'message': commit.commit.message,
                    'committer': commit.committer.login if commit.committer else '',
                    'api_url': commit.url,
                    'created': commit.commit.author.date,
                    'author_avatara': commit.author.avatar_url if commit.author else ''
                }
            )
            try:
                member = Member.objects.get(
                    username=commit.commit.author.name,
                    team__dash__year=settings.CURRENT_YEAR
                )
            except Member.DoesNotExist:
                cm.save()
            else:
                cm.member = member
                cm.save()
Exemplo n.º 2
0
def get_list_of_commits(repo, user):
    try:
        repo_commit = Commits(user=user, repo=repo)
        commit_list = repo_commit.list(sha='master', path=None).all()
    except:
        commit_list = []
    context = {'commit_list':commit_list}
    return context
Exemplo n.º 3
0
def get_commits_list(repo):
    """
    Takes a repo and returns the commit list in 'master' branch
    """
    commits_list = []
    commits_list = Commits(user=organization,
                           repo=repo.name).list(sha='master', path=None).all()
    return commits_list
Exemplo n.º 4
0
 def setUp(self):
     self.cs = Commits(user='******', repo='re_oct')
Exemplo n.º 5
0
class TestCommitsService(TestCase):

    def setUp(self):
        self.cs = Commits(user='******', repo='re_oct')

    def test_LIST(self, request_method):
        request_method.return_value = mock_response_result()
        self.cs.list().all()
        self.assertEqual(request_method.call_args[0],
                         ('get', _('repos/oct/re_oct/commits')))

    def test_GET(self, request_method):
        request_method.return_value = mock_response()
        self.cs.get('e3bc')
        self.assertEqual(request_method.call_args[0],
                         ('get', _('repos/oct/re_oct/commits/e3bc')))

    def test_LIST_comments(self, request_method):
        request_method.return_value = mock_response_result()
        self.cs.list_comments().all()
        self.assertEqual(request_method.call_args[0],
                         ('get', _('repos/oct/re_oct/comments')))

    def test_LIST_comments_for_commit(self, request_method):
        request_method.return_value = mock_response_result()
        self.cs.list_comments(sha='e3bc').all()
        self.assertEqual(request_method.call_args[0],
                         ('get', _('repos/oct/re_oct/commits/e3bc/comments')))

    def test_CREATE_comment(self, request_method):
        request_method.return_value = mock_response('post')
        data = dict(body='some', commit_id='e2bc',
                    line=1, path='some.txt', position=1)
        self.cs.create_comment(data, 'e3bc')
        self.assertEqual(request_method.call_args[0],
                         ('post', _('repos/oct/re_oct/commits/e3bc/comments')))

    def test_GET_comment(self, request_method):
        request_method.return_value = mock_response()
        self.cs.get_comment(1)
        self.assertEqual(request_method.call_args[0],
                         ('get', _('repos/oct/re_oct/comments/1')))

    def test_UPDATE_comment(self, request_method):
        request_method.return_value = mock_response('patch')
        self.cs.update_comment({'body': 'changed'}, 1)
        self.assertEqual(request_method.call_args[0],
                         ('patch', _('repos/oct/re_oct/comments/1')))

    def test_COMPARE(self, request_method):
        request_method.return_value = mock_response()
        self.cs.compare('develop', 'master')
        self.assertEqual(request_method.call_args[0],
                ('get', _('repos/oct/re_oct/compare/develop...master')))

    def test_DELETE_comment(self, request_method):
        request_method.return_value = mock_response('delete')
        self.cs.delete_comment(1)
        self.assertEqual(request_method.call_args[0],
                         ('delete', _('repos/oct/re_oct/comments/1')))
Exemplo n.º 6
0
from pygithub3 import Github
from pygithub3.services.repos import Commits

from settings.auth import github_auth

gh = Github(login=github_auth[0], password=github_auth[1])
commits = []
agiliq = gh.users.get('agiliq')
agiliq_repos = gh.repos.list('agiliq').all()
for repo in agiliq_repos:
	print repo
	agiliq_commit = Commits(user='******', repo=repo.name)
	agiliq_commit.list().all()
print commits


Exemplo n.º 7
0
 def setUp(self):
     self.cs = Commits(user='******', repo='re_oct')
Exemplo n.º 8
0
class TestCommitsService(TestCase):
    def setUp(self):
        self.cs = Commits(user='******', repo='re_oct')

    def test_LIST(self, request_method):
        request_method.return_value = mock_response_result()
        self.cs.list().all()
        self.assertEqual(request_method.call_args[0],
                         ('get', _('repos/oct/re_oct/commits')))

    def test_GET(self, request_method):
        request_method.return_value = mock_response()
        self.cs.get('e3bc')
        self.assertEqual(request_method.call_args[0],
                         ('get', _('repos/oct/re_oct/commits/e3bc')))

    def test_LIST_comments(self, request_method):
        request_method.return_value = mock_response_result()
        self.cs.list_comments().all()
        self.assertEqual(request_method.call_args[0],
                         ('get', _('repos/oct/re_oct/comments')))

    def test_LIST_comments_for_commit(self, request_method):
        request_method.return_value = mock_response_result()
        self.cs.list_comments(sha='e3bc').all()
        self.assertEqual(request_method.call_args[0],
                         ('get', _('repos/oct/re_oct/commits/e3bc/comments')))

    def test_CREATE_comment(self, request_method):
        request_method.return_value = mock_response('post')
        data = dict(body='some',
                    commit_id='e2bc',
                    line=1,
                    path='some.txt',
                    position=1)
        self.cs.create_comment(data, 'e3bc')
        self.assertEqual(request_method.call_args[0],
                         ('post', _('repos/oct/re_oct/commits/e3bc/comments')))

    def test_GET_comment(self, request_method):
        request_method.return_value = mock_response()
        self.cs.get_comment(1)
        self.assertEqual(request_method.call_args[0],
                         ('get', _('repos/oct/re_oct/comments/1')))

    def test_UPDATE_comment(self, request_method):
        request_method.return_value = mock_response('patch')
        self.cs.update_comment({'body': 'changed'}, 1)
        self.assertEqual(request_method.call_args[0],
                         ('patch', _('repos/oct/re_oct/comments/1')))

    def test_COMPARE(self, request_method):
        request_method.return_value = mock_response()
        self.cs.compare('develop', 'master')
        self.assertEqual(
            request_method.call_args[0],
            ('get', _('repos/oct/re_oct/compare/develop...master')))

    def test_DELETE_comment(self, request_method):
        request_method.return_value = mock_response('delete')
        self.cs.delete_comment(1)
        self.assertEqual(request_method.call_args[0],
                         ('delete', _('repos/oct/re_oct/comments/1')))
def main():
    s = sendgrid.Sendgrid(sendgrid_auth[0], sendgrid_auth[1], secure=True)

    # Github object with authentication credentials    
    gh = Github(login=github_auth[0], password=github_auth[1])
    
    # Get agiliq user object and repos
    agiliq = gh.users.get('agiliq')
    agiliq_repos = gh.repos.list('agiliq').all()
    
    # Get ids and names of people from agiliq.unfuddle.com
    people = unfuddle.get_people()
    for i in people:
        persons[i['id']] = i['first_name']

    # Get ids and names of projects from agiliq.unfuddle.com
    project = unfuddle.get_project()
    for i in project:
        projects[i['id']] = i['title']
    
    # Retrieve the Stream Events.
    # These are similar to those appearing on http://www.assembla.com/start (right side)

    api = API(assembla_auth, use_cache=True)
    events = api.events()
    spaces = api.spaces()
    local_zone = tz.tzlocal()

    # Retrieve the events happened in all spaces for an Organization, for a day.


    tday = datetime.now()
    tday = tday.replace(tzinfo=local_zone)
    this_day = (tday - timedelta(hours=24)).date()
    uthis_day = tday.date()     # Unfuddle start date value
    unext_day = (tday + timedelta(hours=24)).date()     # Unfuddle end date value
    subject = "Agiliq-Assembla Summary for the day " + tday.strftime("%b %d %Y")
    plain_body = ""
    colors = {'funderhub': 'cyan', 'Occasio': 'green', 'TexStar University': 'brown'}
    user_activity = {}

    github_body = ""
    github_user_activity = {}

    unfuddle_activity = {}
    unfuddle_body = ''
    parameter = 'start_date=' + str(uthis_day) + '&end_date=' + str(unext_day) + '&limit=0'
    activity = unfuddle.get_account_activity(parameter)

    for event in events:
        edt = parse(event.date)
        event_date_time = edt.astimezone(local_zone)
        event_date = event_date_time.date()
        if not event_date > this_day:
            break
        for space in spaces:
            for user in space.users():
                if user.name not in user_activity.keys():
                    user_activity[user.name] = plain_body
                if user.id == event.author['id'] and event.space['id'] == space.id:
                    plain_body += "<hr/> <b>{0}</b> @ <font color=".format(
                        event_date_time.strftime("%H:%M"),
                        event.author['name']
                        ) + \
                    colors.get(event.space['name'], 'red') + ">{0}</font> <a href='{3}'>{1}</a> <br/> {2} <br/>".format(
                        event.space['name'],
                        event.operation,
                        event.title,
                        event.url,
                        #event.whatchanged,
                        #event.comment_or_description,
                        )
                    if event.object == 'Ticket' and event.operation != 'created':
                        if getattr(event, 'whatchanged', None):
                            plain_body += "<font color='violet'>" + event.whatchanged + "</font><br/>"
                        elif getattr(event, 'comment_or_description', None):
                            plain_body += "<font color='violet'>" + event.comment_or_description + "</font><br/>"
                    if plain_body:
                        user_activity[user.name] += plain_body
                    plain_body = ""

    for repo in agiliq_repos:

        if repo.name == 'blog' or repo.name == 'becomingguru.github.com':
            continue

        agiliq_commit = Commits(user='******', repo=repo.name)
        commit_list = agiliq_commit.list(sha='master', path=None).all()

        for k in commit_list:
            cdt = parse(k.commit.committer.date)
            commit_date_time = cdt.astimezone(local_zone)
            commit_date = commit_date_time.date()
            if not commit_date > this_day:
                break
            name = k.commit.committer.name.encode('ascii', 'ignore')
            for user in email_to:
                if name not in github_user_activity.keys():
                        github_user_activity[name] = github_body

                if name == user[2] or name == user[1]:
                    commit_url = repo.html + '/commit/' + k.sha
                    github_body += "<hr/> <b>{0}</b> @ <font color=".format(
                        commit_date_time.strftime("%H:%M"),
                        name
                        ) + 'red' + ">{0}</font> <a href='{3}'>{1}</a> <br/> {2} <br/>".format(
                        repo.name,
                        "comitted",
                        k.sha[:10],
                        commit_url,
                        )
                    github_body += "<font color='violet'>" + k.commit.message + "</font><br/>"                
                    
                    if github_body:
                        github_user_activity[name] += github_body
                    github_body = ""
    
    for i in activity:
        if i['person_id'] in persons.keys():
            person = persons[i['person_id']]
        else:
            continue
        if i['project_id'] in projects.keys():
           project_name = projects[i['project_id']]
        else:
            continue
        if person not in unfuddle_activity.keys():
            unfuddle_activity[person] = unfuddle_body
        adt = parse(i['created_at'])
        # print adt.tzinfo
        activity_date_time = adt.astimezone(local_zone)

        record_type = i['record_type']#.encode('ascii', 'ignore')
        unfuddle_body += "<hr/> <b>{0}</b> @ <font color=".format(
                        activity_date_time.strftime("%H:%M"),
                        person
                        ) + 'red' + ">{0}</font> <a href='{3}'>{1}</a> <br/> {2} <br/>".format(
                        project_name,
                        record_type,
                        i['id'],
                        unfuddle.base_url + '/a#/projects/' + str(i['project_id']),
                        )
        # unfuddle_body += '\nRecord Type : ' + record_type
        # unfuddle_body += '\nPerson : ' + person
        unfuddle_body += "<font color='violet'>" + '\nEvent : ' + i['event'] + "</font><br/>"        

        if record_type == 'Message':
            record_message_title = i['record']['message']['title']
            record_message_body = i['record']['message']['body']
            unfuddle_body += "<font color='violet'>" + '\nMessage Title :  %s' % record_message_title + "</font><br/>"
            unfuddle_body += "<font color='violet'>" + '\nMessage Body : %s' % record_message_body + "</font><br/>"
        elif record_type == 'Milestone':
            record_milestone_title = i['record']['milestone']['title']
            record_milestone_desc = i['record']['milestone']['description']
            unfuddle_body += "<font color='violet'>" + '\nMilestone Title : %s' % record_milestone_title + "</font><br/>"
            unfuddle_body += "<font color='violet'>" + '\nMilestone Description : %s' % record_milestone_desc + "</font><br/>"
        elif record_type == 'Ticket':
            record_ticket_summary = i['record']['ticket']['summary']
            record_ticket_desc = i['record']['ticket']['description']
            unfuddle_body += "<font color='violet'>" + '\nTicket Summary : %s' % record_ticket_summary + "</font><br/>"
            unfuddle_body += "<font color='violet'>" + '\nTicket Description : %s' % record_ticket_desc + "</font><br/>"
        elif record_type == 'TimeEntry':
            record_timeentry_desc = i['record']['time_entry']['description']
            unfuddle_body += "<font color='violet'>" + '\nTimeEntry Description : %s' % record_timeentry_desc + "</font><br/>"
        elif record_type == 'Changeset':
            record_Changeset_commit_message = i['record']['changeset']['message']
            unfuddle_body += "<font color='violet'>" + '\nCommit Message : %s' % record_Changeset_commit_message + "</font><br/>"
        elif record_type == 'Comment':
            record_comment_body = i['record']['comment']['body']
            unfuddle_body += "<font color='violet'>" + '\nComment Body : %s' % record_comment_body + "</font><br/>"
    
        if unfuddle_body:
            unfuddle_activity[person] += unfuddle_body
            unfuddle_body = ""

    #check if a user has same name in assembla, github and unfuddle
    for k in user_activity.keys():
        if k in github_user_activity.keys():
            user_activity[k] = user_activity[k] + github_user_activity[k]
            github_user_activity.pop(k)
        if k in unfuddle_activity.keys():
            user_activity[k] = user_activity[k] + unfuddle_activity[k]
            unfuddle_activity.pop(k)
    
    user_activity.update(github_user_activity)
    user_activity.update(unfuddle_activity)

    html = "<html><body>"
    holiday = True
    for k, v in user_activity.iteritems():
        #display summary per each user.
        if v:
            html += "<div>" + "<h3>" + k + "</h3>" + v + "</div>"
            holiday = False
    html += "</body></html>"
    
    #check if no activity done. if so do not send mail.
    if not holiday:
        message = sendgrid.Message("*****@*****.**", subject, "", "<div>" + html + "</div>")
        for person in email_to:
            message.add_to(person[0], person[1])
        s.smtp.send(message)