-
Notifications
You must be signed in to change notification settings - Fork 124
[launchpad] Add support for launchpad #851
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,203 @@ | ||
| # -*- coding: utf-8 -*- | ||
| # | ||
| # Copyright (C) 2015-2020 Bitergia | ||
| # | ||
| # This program is free software; you can redistribute it and/or modify | ||
| # it under the terms of the GNU General Public License as published by | ||
| # the Free Software Foundation; either version 3 of the License, or | ||
| # (at your option) any later version. | ||
| # | ||
| # This program is distributed in the hope that it will be useful, | ||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| # GNU General Public License for more details. | ||
| # | ||
| # You should have received a copy of the GNU General Public License | ||
| # along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| # | ||
| # Authors: | ||
| # Nitish Gupta <imnitish.ng@gmail.com> | ||
| # | ||
|
|
||
| import logging | ||
|
|
||
| from grimoirelab_toolkit.datetime import (datetime_utcnow) | ||
|
|
||
| from .utils import get_time_diff_days | ||
|
|
||
| from .enrich import Enrich, metadata | ||
| from ..elastic_mapping import Mapping as BaseMapping | ||
|
|
||
| logger = logging.getLogger(__name__) | ||
|
|
||
|
|
||
| class Mapping(BaseMapping): | ||
|
|
||
| @staticmethod | ||
| def get_elastic_mappings(es_major): | ||
| """Get Elasticsearch mapping. | ||
|
|
||
| geopoints type is not created in dynamic mapping | ||
|
|
||
| :param es_major: major version of Elasticsearch, as string | ||
| :returns: dictionary with a key, 'items', with the mapping | ||
| """ | ||
|
|
||
| mapping = """ | ||
| { | ||
| "properties": { | ||
| "description_analyzed": { | ||
| "type": "text", | ||
| "index": true | ||
| } | ||
| } | ||
| } | ||
| """ | ||
| return {"items": mapping} | ||
|
|
||
|
|
||
| class LaunchpadEnrich(Enrich): | ||
|
|
||
| mapping = Mapping | ||
| roles = ['assignee_data', 'owner_data'] | ||
|
|
||
| def __init__(self, db_sortinghat=None, db_projects_map=None, json_projects_map=None, | ||
| db_user='', db_password='', db_host=''): | ||
| super().__init__(db_sortinghat, db_projects_map, json_projects_map, | ||
| db_user, db_password, db_host) | ||
|
|
||
| def get_field_author(self): | ||
| return "owner_data" | ||
|
|
||
| def set_elastic(self, elastic): | ||
| self.elastic = elastic | ||
|
|
||
| def get_sh_identity(self, item, identity_field=None): | ||
| """ Return a Sorting Hat identity using launchpad user data """ | ||
|
|
||
| identity = { | ||
| 'username': None, | ||
| 'name': None, | ||
| 'email': None | ||
| } | ||
|
|
||
| item = item['data'] | ||
| if isinstance(item, dict) and identity_field in item: | ||
| identity['username'] = item[identity_field].get('name', None) | ||
| identity['name'] = item[identity_field].get('display_name', None) | ||
|
|
||
| return identity | ||
|
|
||
| def get_identities(self, item): | ||
| """ Return the identities from an item """ | ||
|
|
||
| for rol in self.roles: | ||
| if rol in item['data']: | ||
| user = self.get_sh_identity(item, rol) | ||
| yield user | ||
|
|
||
| @metadata | ||
| def get_rich_item(self, item): | ||
|
|
||
| eitem = {} | ||
|
|
||
imnitishng marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| self.copy_raw_fields(self.RAW_FIELDS_COPY, item, eitem) | ||
|
|
||
| # data fields to copy | ||
| copy_fields = ["title", "web_link", "date_created", "date_incomplete", "is_complete", | ||
| "status", "bug_target_name", "importance", "date_triaged", "date_left_new"] | ||
|
|
||
| bug = item['data'] | ||
| self.copy_raw_fields(copy_fields, bug, eitem) | ||
|
|
||
| if self.sortinghat: | ||
| eitem.update(self.get_item_sh(item, self.roles)) | ||
|
|
||
| if self.prjs_map: | ||
| eitem.update(self.get_item_project(eitem)) | ||
|
|
||
| eitem.update(self.__get_rich_bugs(bug)) | ||
| eitem.update(self.get_grimoire_fields(bug["date_created"], "issue")) | ||
|
|
||
| return eitem | ||
|
|
||
| def __get_rich_bugs(self, data): | ||
| """Create enriched data for bugs""" | ||
|
|
||
| rich_bugtask = {} | ||
|
|
||
| # Time to | ||
| if not data["is_complete"]: | ||
| rich_bugtask["time_open_days"] = get_time_diff_days(data['date_created'], datetime_utcnow().replace(tzinfo=None)) | ||
| else: | ||
| rich_bugtask["time_open_days"] = get_time_diff_days(data['date_created'], data['date_closed']) | ||
| rich_bugtask["time_created_to_assigned"] = get_time_diff_days(data['date_created'], data['date_assigned']) | ||
| rich_bugtask['time_assigned_to_closed'] = get_time_diff_days(data['date_assigned'], data['date_closed']) | ||
| rich_bugtask["time_to_close_days"] = get_time_diff_days(data['date_created'], data['date_closed']) | ||
|
|
||
| if data['activity_data']: | ||
| rich_bugtask['time_to_last_update_days'] = \ | ||
imnitishng marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| get_time_diff_days(data['date_created'], data['activity_data'][-1]['datechanged']) | ||
|
|
||
| rich_bugtask['reopened'] = 1 if data['date_left_closed'] else 0 | ||
| rich_bugtask['time_to_fix_commit'] = get_time_diff_days(data['date_created'], data['date_fix_committed']) | ||
| rich_bugtask['time_worked_on'] = get_time_diff_days(data['date_in_progress'], data['date_fix_committed']) | ||
| rich_bugtask['time_to_confirm'] = get_time_diff_days(data['date_created'], data['date_confirmed']) | ||
|
|
||
| # Author and assignee data | ||
| owner = data.get('owner_data', None) | ||
| if owner: | ||
| rich_bugtask['user_login'] = owner.get('name', None) | ||
| rich_bugtask['user_name'] = owner.get('display_name', None) | ||
| rich_bugtask['user_joined'] = owner.get('date_created', None) | ||
| rich_bugtask['user_karma'] = owner.get('karma', None) | ||
| rich_bugtask['user_time_zone'] = owner.get('time_zone', None) | ||
|
|
||
| assignee = data.get('assignee_data', None) | ||
imnitishng marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| if assignee: | ||
| assignee = data['assignee_data'] | ||
| rich_bugtask['assignee_login'] = assignee.get('name', None) | ||
| rich_bugtask['assignee_name'] = assignee.get('display_name', None) | ||
| rich_bugtask['assignee_joined'] = assignee.get('date_created', None) | ||
| rich_bugtask['assignee_karma'] = assignee.get('karma', None) | ||
| rich_bugtask['assignee_time_zone'] = assignee.get('time_zone', None) | ||
|
|
||
| # Extract info related to bug | ||
| rich_bugtask.update(self.__extract_bug_info(data['bug_data'])) | ||
|
|
||
| rich_bugtask['time_to_first_attention'] = \ | ||
| get_time_diff_days(data['date_created'], self.get_time_to_first_attention(data)) | ||
| rich_bugtask['activity_count'] = len(data['activity_data']) | ||
|
|
||
| return rich_bugtask | ||
|
|
||
| def __extract_bug_info(self, bug_data): | ||
|
|
||
| rich_bug_info = {} | ||
|
|
||
| copy_fields = ["latest_patch_uploaded", "security_related", "private", "users_affected_count", | ||
valeriocos marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "title", "description", "tags", "date_last_updated", "message_count", "heat"] | ||
| rich_bug_info['time_created_to_last_update_days'] = \ | ||
| get_time_diff_days(bug_data['date_created'], bug_data['date_last_updated']) | ||
|
|
||
| rich_bug_info['description'] = bug_data['description'][:self.KEYWORD_MAX_LENGTH] | ||
| rich_bug_info['description_analyzed'] = bug_data['description'] | ||
| rich_bug_info['bug_name'] = bug_data['name'] | ||
| rich_bug_info['bug_id'] = bug_data['id'] | ||
|
|
||
| self.copy_raw_fields(copy_fields, bug_data, rich_bug_info) | ||
|
|
||
| return rich_bug_info | ||
|
|
||
| def get_time_to_first_attention(self, item): | ||
| """Get the first date at which a comment or activity was made to the bug by someone | ||
| other than the user who created the issue | ||
| """ | ||
| message_dates = [message['date_created'] for message in item['messages_data'] | ||
| if item['owner_data'].get('name', None) != message['owner_data'].get('name', None)] | ||
| activity_dates = [activity['datechanged'] for activity in item['activity_data'] | ||
| if item['owner_data'].get('name', None) != activity['person_data'].get('name', None)] | ||
| activity_dates.extend(message_dates) | ||
| if activity_dates: | ||
| return min(activity_dates) | ||
| return None | ||
This file contains hidden or 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 hidden or 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 hidden or 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 @@ | ||
| --- | ||
| title: Add support for Launchpad | ||
| category: added | ||
| author: Nitish Gupta <imnitish.ng@gmail.com> | ||
| issue: 842 | ||
| notes: Added support for creating raw and enriched | ||
| indexes of launchpad bugs. The schemas and | ||
| tests for data have also been added. |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.