peoplegroup-connectors 0.1.54 → 0.1.59

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 96fc3009d2ff4505f4107b69d1335836ad63249e74437af17965711098096a2b
4
- data.tar.gz: 156eb754035cb423ebfbd623d4888b6587f24f8453465021cf49ef1e367ce70a
3
+ metadata.gz: 880e9b3fac40c4640e8e0c50ab2935e9874a1bd8f3d9fa19484288e7c6af6600
4
+ data.tar.gz: '0898dfefe0c405e442a0624e5c1289f266fc8fa9c8c3b2c8b4d1cf2a4974d48c'
5
5
  SHA512:
6
- metadata.gz: e8272b05bb44b68056e9f27d6f17f77801d8ea92447d34c33f458d1d3f6c3e001ccc76f1be2eaed5a187b3b224b15cf92314b322a3a05cded86d91a16dc0994d
7
- data.tar.gz: a4199ca68a7d69bcf3ba538236aefab972640d3ae8f099ee080622ebaa9f4fcd6e7f1ddbec66d9f5477bd292576250dfdb47c5c2ef29ed711f7fc17d0af24020
6
+ metadata.gz: 5bfcda95570803256348e6f85931969dccc927381ccd9e2f9fdaf4776d47eb35209c32e8ba3d074b1c49846d55b84890834c542feadf9c5a84d66172dbeb94a9
7
+ data.tar.gz: 5aedbfc3d6661e1b5a0ddae90bd498a548ed27368d983414f7cd36f13cc99422c1d7ca12b66cc38d6867850228260ff2dc8d8c63e14f1ee40fcc0c2a5d7aab47
@@ -5,6 +5,8 @@ require 'bamboozled'
5
5
  module PeopleGroup
6
6
  module Connectors
7
7
  class Bamboo
8
+ attr_accessor :client
9
+
8
10
  EmployeeNotFoundError = Class.new(StandardError)
9
11
 
10
12
  def initialize(use_report: false)
@@ -15,6 +17,7 @@ module PeopleGroup
15
17
  def get_employee_details(id)
16
18
  employees.find { |emp| emp['id'] == id.to_s }
17
19
  end
20
+ alias_method :get_team_member_details, :get_employee_details
18
21
 
19
22
  def get_employee_details!(id)
20
23
  employee_details = get_employee_details(id)
@@ -87,6 +90,14 @@ module PeopleGroup
87
90
  employee
88
91
  end
89
92
 
93
+ def team_members_by_department(department)
94
+ active_and_current_team_members.select { |team_member| team_member['department'] == department }
95
+ end
96
+
97
+ def team_members_by_division(division)
98
+ active_and_current_team_members.select { |team_member| team_member['division'] == division }
99
+ end
100
+
90
101
  def fetch_manager(team_member)
91
102
  active_team_members.find { |tm| tm['id'] == team_member['supervisorEId'] }
92
103
  end
@@ -121,6 +132,45 @@ module PeopleGroup
121
132
  manager
122
133
  end
123
134
 
135
+ def people_managers_in_functions(departments: [], divisions: [])
136
+ active_and_current_team_members.select do |team_member|
137
+ (departments.include?(team_member['department']) || divisions.include?(team_member['division'])) && has_direct_reports?(team_member['id'])
138
+ end
139
+ end
140
+
141
+ def all_reports_for(id)
142
+ direct_reports_to_check = direct_reports_for(id)
143
+ reports_to_return = []
144
+ while direct_reports_to_check.present?
145
+ current_node = direct_reports_to_check.shift
146
+ reports_to_return << current_node
147
+ direct_reports_to_check.concat(direct_reports_for(current_node['id']))
148
+ end
149
+ reports_to_return
150
+ end
151
+
152
+ def direct_reports_for(id)
153
+ active_and_current_team_members.select { |team_member| team_member['supervisorEId'] == id.to_s }
154
+ end
155
+
156
+ def has_direct_reports?(id)
157
+ active_and_current_team_members.any? { |team_member| team_member['supervisorEId'] == id.to_s }
158
+ end
159
+
160
+ def reports_in_departments(departments, exclude_email)
161
+ active_and_current_team_members.select do |team_member|
162
+ # exclude_email is for example to filter out the PBP itself in case their department is also the department they manage
163
+ departments.include?(team_member['department']) && team_member['workEmail'] != exclude_email
164
+ end
165
+ end
166
+
167
+ def reports_in_divisions(divisions, exclude_email)
168
+ active_and_current_team_members.select do |team_member|
169
+ # exclude_email is for example to filter out the PBP itself in case their department is also the department they manage
170
+ divisions.include?(team_member['division']) && team_member['workEmail'] != exclude_email
171
+ end
172
+ end
173
+
124
174
  def create_employee(employee_details_hash)
125
175
  @client.employee.add(employee_details_hash)
126
176
  end
@@ -217,6 +267,27 @@ module PeopleGroup
217
267
  total_accruals['balance'].to_f
218
268
  end
219
269
 
270
+ def time_off_policies
271
+ @time_off_policies ||= @client.meta.time_off_policies
272
+ end
273
+
274
+ def employee_time_off_policies(employee_id)
275
+ @client.employee.time_off_policies(employee_id)
276
+ end
277
+ alias_method :team_member_time_off_policies, :employee_time_off_policies
278
+
279
+ def add_time_off_policy(employee_id, time_off_policy_id, accrual_start_date)
280
+ policies = [{ timeOffPolicyId: time_off_policy_id, accrualStartDate: accrual_start_date }]
281
+
282
+ @client.employee.add_time_off_policies(employee_id, policies)
283
+ end
284
+
285
+ def remove_time_off_policy(employee_id, time_off_policy_id)
286
+ # A nil accrual start date removes a policy assignment
287
+ # Reference: https://documentation.bamboohr.com/reference#time-off-assign-time-off-policies-for-an-employee
288
+ add_time_off_policy(employee_id, time_off_policy_id, nil)
289
+ end
290
+
220
291
  def job_details(employee_id)
221
292
  @client.employee.table_data(employee_id, 'jobInfo')
222
293
  end
@@ -282,8 +353,13 @@ module PeopleGroup
282
353
  @client.employee.add_table_row(team_member_id, 'customBonus', data)
283
354
  end
284
355
 
285
- def has_direct_reports?(id)
286
- active_team_members.any? { |team_member| team_member['supervisorEId'] == id.to_s }
356
+ def add_rating_details(team_member_id, performance, potential)
357
+ data = {
358
+ customEffectiveDate4: Date.today.to_s,
359
+ customPerformanceFactor: performance,
360
+ customPotentialFactor: potential
361
+ }
362
+ @client.employee.add_table_row(team_member_id, 'customPerformanceandPotentialTable', data)
287
363
  end
288
364
 
289
365
  private
@@ -90,7 +90,7 @@ module PeopleGroup
90
90
  retry_on_error { @client.create_merge_request(project_id, commit_message, options) }
91
91
  end
92
92
 
93
- def commit_change_to_new_merge_request_v2(project_id, branch_name, commit_message, description = nil, files_to_delete = [], files_to_update = [])
93
+ def commit_change_to_new_merge_request_v2(project_id, branch_name, commit_message, description = nil, files_to_delete = [], files_to_update = [], target_branch: 'master')
94
94
  actions = []
95
95
 
96
96
  files_to_delete.each do |file|
@@ -112,10 +112,10 @@ module PeopleGroup
112
112
 
113
113
  return unless actions.any?
114
114
 
115
- retry_on_error { @client.create_branch(project_id, branch_name, 'master') }
115
+ retry_on_error { @client.create_branch(project_id, branch_name, target_branch) }
116
116
  retry_on_error { @client.create_commit(project_id, branch_name, commit_message, actions) }
117
117
 
118
- options = { source_branch: branch_name, target_branch: 'master', remove_source_branch: true }
118
+ options = { source_branch: branch_name, target_branch: target_branch, remove_source_branch: true }
119
119
  options[:description] = description if description
120
120
  retry_on_error { @client.create_merge_request(project_id, commit_message, options) }
121
121
  end
@@ -162,8 +162,8 @@ module PeopleGroup
162
162
  epics.first
163
163
  end
164
164
 
165
- def create_branch(project_id, branch_name)
166
- retry_on_error { @client.create_branch(project_id, branch_name, 'master') }
165
+ def create_branch(project_id, branch_name, target_branch: 'master')
166
+ retry_on_error { @client.create_branch(project_id, branch_name, target_branch) }
167
167
  end
168
168
 
169
169
  def create_merge_request(project_id, title, options = {})
@@ -2,6 +2,6 @@
2
2
 
3
3
  module PeopleGroup
4
4
  module Connectors
5
- VERSION = '0.1.54'
5
+ VERSION = '0.1.59'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: peoplegroup-connectors
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.54
4
+ version: 0.1.59
5
5
  platform: ruby
6
6
  authors:
7
7
  - lien van den steen
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-03 00:00:00.000000000 Z
11
+ date: 2021-06-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gitlab
@@ -72,14 +72,14 @@ dependencies:
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: 0.2.9
75
+ version: 0.2.11
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: 0.2.9
82
+ version: 0.2.11
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: greenhouse_io-gitlab
85
85
  requirement: !ruby/object:Gem::Requirement
@@ -190,7 +190,7 @@ metadata:
190
190
  homepage_uri: https://gitlab.com/gitlab-com/people-group/peopleops-eng/connectors-gem
191
191
  source_code_uri: https://gitlab.com/gitlab-com/people-group/peopleops-eng/connectors-gem
192
192
  changelog_uri: https://gitlab.com/gitlab-com/people-group/peopleops-eng/connectors-gem
193
- post_install_message:
193
+ post_install_message:
194
194
  rdoc_options: []
195
195
  require_paths:
196
196
  - lib
@@ -205,8 +205,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
205
205
  - !ruby/object:Gem::Version
206
206
  version: '0'
207
207
  requirements: []
208
- rubygems_version: 3.2.3
209
- signing_key:
208
+ rubygems_version: 3.1.4
209
+ signing_key:
210
210
  specification_version: 4
211
211
  summary: Library for our shared connectors.
212
212
  test_files: []