-
Notifications
You must be signed in to change notification settings - Fork 1
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
outgoing templated fields #144
Closed
Closed
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 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
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 |
---|---|---|
|
@@ -150,6 +150,18 @@ abstract class AbstractSync( | |
imsProject: IMSProject, issueId: String, newState: IssueState, users: List<User> | ||
): TimelineItemConversionInformation? | ||
|
||
/** | ||
* Incorporate a templated field change | ||
* @param imsProject IMS project to sync | ||
* @param issueId GitHub ID of the issue | ||
* @param fieldChangedEvent Event describing the field change | ||
* @param users List of users involved in this timeline item, sorted with most relevant first | ||
* @return Conversion information | ||
*/ | ||
abstract suspend fun syncTemplatedField( | ||
imsProject: IMSProject, issueId: String, fieldChangedEvent: TemplatedFieldChangedEvent, users: List<User> | ||
): TimelineItemConversionInformation? | ||
|
||
/** | ||
* Incorporate an added label | ||
* @param imsProject IMS project to sync | ||
|
@@ -196,6 +208,13 @@ abstract class AbstractSync( | |
*/ | ||
abstract suspend fun isOutgoingLabelsEnabled(imsProject: IMSProject): Boolean | ||
|
||
/** | ||
* Check if Outgoing Sync of TemplatedFields is Enabled | ||
* @param imsProject IMS project to check for | ||
* @return true if and only if outgoing sync of templatedFields is enabled | ||
*/ | ||
abstract suspend fun isOutgoingTemplatedFieldsEnabled(imsProject: IMSProject): Boolean | ||
|
||
/** | ||
* Check if Outgoing Sync of Comments is Enabled | ||
* @param imsProject IMS project to check for | ||
|
@@ -660,6 +679,9 @@ abstract class AbstractSync( | |
if (isOutgoingAssignmentsEnabled(imsProject)) { | ||
syncOutgoingAssignments(timeline, imsProject, issueInfo) | ||
} | ||
if (isOutgoingTemplatedFieldsEnabled(imsProject)) { | ||
syncOutgoingTemplatedFields(timeline, imsProject, issueInfo) | ||
} | ||
if (isOutgoingStatesEnabled(imsProject)) { | ||
syncOutgoingStateChanges(timeline, imsProject, issueInfo) | ||
} | ||
|
@@ -844,6 +866,37 @@ abstract class AbstractSync( | |
} | ||
} | ||
|
||
/** | ||
* Sync Outgoing TemplatedFields Changes | ||
* @param timeline Timeline of the issue | ||
* @param imsProject IMS project to sync | ||
* @param issueInfo Issue to sync | ||
*/ | ||
private suspend fun syncOutgoingTemplatedFields( | ||
timeline: List<TimelineItem>, imsProject: IMSProject, issueInfo: IssueConversionInformation | ||
) { | ||
val virtualIDs = mapOf<TimelineItem, String>()//For future features | ||
val relevantTimeline = timeline.mapNotNull { it as? TemplatedFieldChangedEvent } | ||
if (relevantTimeline.isEmpty()) return | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. brackets pls There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
val finalBlock = findFinalBlock(relevantTimeline) { it.fieldName to it.newValue } | ||
if (finalBlock.none { | ||
collectedSyncInfo.timelineItemConversionInformationService.findByImsProjectAndGropiusId( | ||
imsProject.rawId!!, it.rawId!! | ||
) != null | ||
}) { | ||
val conversionInformation = syncTemplatedField(imsProject, | ||
issueInfo.githubId, | ||
finalBlock.first(), | ||
finalBlock.map { it.createdBy().value }) | ||
if (conversionInformation != null) { | ||
conversionInformation.gropiusId = finalBlock.map { it.rawId ?: virtualIDs[it]!! }.first() | ||
collectedSyncInfo.timelineItemConversionInformationService.save( | ||
conversionInformation | ||
).awaitSingle() | ||
} | ||
} | ||
} | ||
|
||
/** | ||
* Sync Outgoing State Changes | ||
* @param timeline Timeline of the issue | ||
|
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is there a GitHub id in the AbstractSync?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
62aa13d