-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhh_helper.js
1037 lines (869 loc) · 38.8 KB
/
hh_helper.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// ==UserScript== Обновление: 28 января 2022 - Изменена верстка => правки в "Скачать CSV"
/*
* ОПИСАНИЕ ФУНКЦИОНАЛА
* 1. Генерация CSV с откликами на вакансии
* 2. Чекбокс - Выбрать все отклики
* 3. Резюме Walker
* - Скачать резюме
* - Пригласить по теме Оценка
*/
const hh_helper = function ()
{
const resumeEachItemProcessTimeout = 2000;
const skipApplicationActionTimeout = 10000;
const HREF = window.location.href;
if ([ // Список масок location.href дополнительных окон веб страницы, на которых не нужно отрабатывать скрипт
/(^[^:\/#\?]*:\/\/([^#\?\/]*\.)?websocket\.hh\.ru(:[0-9]{1,5})?\/.*$)/,
].some(regExp => regExp.test(window.location.href)))
{
return;
}
/** Global functions */
/**
* Функция для запуска событий мыши
* @param elem Цель
* @param type Тип события
* @param centerX
* @param centerY
*/
function eventFire(elem, type, centerX, centerY)
{
var evt = document.createEvent('MouseEvents');
evt.initMouseEvent(
type,
true,
true,
unsafeWindow,
1,
1,
1,
centerX || 0,
centerY || 0,
false,
false,
false,
false,
0,
elem
);
elem.dispatchEvent(evt)
}
/**
* Функция слежения за изменениями в DOM (внутри target)
* @param selector Селектор наблюдаемого элемента
* @param target Родительский элемент
* @param callback Функция обратного вызова
* @param disposable Отключение слежки после первого изменения
*/
function watchDomMutation(selector, target, callback, disposable = false)
{
const observer = new MutationObserver((mutationsList) =>
{
for (let mutation of mutationsList)
{
if (mutation.type !== 'childList' || !mutation.addedNodes.length)
{
continue;
}
Array.from(mutation.addedNodes).forEach(function (node)
{
if (!(node instanceof Element))
{
return;
}
if (node.matches(selector))
{
callback(node);
disposable && observer.disconnect();
return observer;
}
});
}
});
observer.observe(target, {
childList: true,
subtree: true
});
}
/**
* Ожижидание первой мутации элемента
* @param selector Селектор наблюдаемого элемента
* @param target Родительский элемент
* @param type Тип мутации
*/
function waitDomMutation(selector, target, type = null)
{
return new Promise(function (resolve)
{
const observer = new MutationObserver((mutationsList) =>
{
for (let mutation of mutationsList)
{
if (type && mutation.type !== type)
{
continue;
}
if (mutation.type === 'childList')
{
if (mutation.type !== 'childList' || !mutation.addedNodes.length)
{
continue;
}
Array.from(mutation.addedNodes).forEach(function (node)
{
if (!(node instanceof Element))
{
return;
}
if (node.matches(selector))
{
observer.disconnect();
resolve(node);
}
});
}
else if (mutation.type === 'attributes')
{
resolve(mutation);
}
else if (mutation.type === 'characterData')
{
console.log('The ' + mutation.characterData + ' characterData was modified.');
}
else
{
console.log('The mutation type is ' + mutation.type);
}
}
});
observer.observe(target, {
characterData: true,
attributes: true,
childList: true,
subtree: true
});
});
}
/**
* Ожидает появление элемента в DOM
* @param selector Селектор ожидаемого элемента
* @param parent Родительский элемент
* @returns {Promise<Element>}
*/
function waitForElement(selector, parent = document)
{
return new Promise(function (resolve)
{
let interval = setInterval(function ()
{
const element = parent.querySelector(selector);
if (element)
{
clearInterval(interval);
resolve(element);
}
}, 50);
});
}
/**
* Синхронная функция задержки(паузы)
* @param ms
* @returns {Promise<null>}
*/
const delay = ms =>
{
return new Promise(r => setTimeout(() => r(), ms))
};
/**
* Return the first #text node content
* @param node
* @returns {*|string}
*/
const getFirstTextNode = (node) =>
{
const text = [...node.childNodes].find(child => child.nodeType === Node.TEXT_NODE);
return text && text.textContent.trim();
}
/**
* Возвращает подстроку location.pathname
* @param url
* @param limit Ограничивает количество сегментов
* @param start Начало выборки сегментов
* @returns {string}
*/
function getUrlPathSegments(url = '', limit = 0, start = 0)
{
let pathname = url
? new URL(url).pathname
: location.pathname;
const sectionsArray = pathname.replace(/^\/|\/$/g, '').split('/');
let sectionsResult = [];
for (let i = 0, count = 0; sectionsArray.length > i; i++, count++)
{
if (start > i)
{
continue;
}
if (limit && count === limit)
{
break;
}
sectionsResult.push(sectionsArray[i]);
}
return sectionsResult.join('/');
}
/**
* Возвращает значение параметра из URL фдреса страницы
* @param parameterName Имя параметра
* @returns {string}
*/
function getUrlParameterValue(parameterName)
{
return (new URL(window.location.href)).searchParams.get(parameterName);
}
/**
* Форматирование даты
* @param str
* @returns {string}
*/
function formatDateString(str)
{
let months = ['января', 'февраля', 'марта', 'апреля', 'мая', 'июня', 'июля', 'августа', 'сентября', 'октября', 'ноября', 'декабря'];
str = str.replace(/\u00a0/g, ' ');
for (let i = 0; i < months.length; i++)
{
if (str.includes(months[i]))
{
str = str.replace(months[i], (i + 1).toString());
break;
}
}
let datetime = str.split(', ');
let date = datetime[0].split(' ');
let day = parseInt(date[0]) < 10 ? '0' + date[0] : date[0];
let month = parseInt(date[1]) < 10 ? '0' + date[1] : date[1];
let year = (typeof date[2] === 'undefined') ? (new Date()).getFullYear() : date[2];
return day + '/' + month + '/' + year + ' ' + datetime[1];
}
/**
* Возвращает найденные в строке номера телефонов
* @param str Строка для поиска номеров
* @returns {*} Возвращает массив с номерами телефонов
*/
function getPhoneNumbersFromString(str)
{
return str.match(/(\+)?(\(\d{2,3}\) ?\d|\d)(([ \-]?\d)|( ?\(\d{2,3}\) ?)){5,12}\d/g);
}
/**
* Удаляет все символы из строки, кроме + и цифр
* @param phoneNumber Строка с номер телефона
* @returns {*}
*/
function clearPhoneNumber(phoneNumber)
{
return phoneNumber.replace(/[^+\d]+/g, "");
}
/**
* Вставляет элемент в DOM
* @param element
* @param parent
* @param index
*/
function insertElement(element, parent, index)
{
let children = parent.childNodes;
index = typeof index === 'undefined' || !children[index] ? children.length : index;
parent.insertBefore(element, children[index]);
}
/**
* Добавляет кнопку в строку фильтров откликов
* @param html HTML кнопки
* @param index Порядковый номер кнопки перед которой будет вставлена новая
* @returns Element Возвращает добавленную кнопку
*/
function addCollectionFilterButton(html, index)
{
const wrapper = document.createElement('span');
wrapper.setAttribute('class', 'candidates-button');
wrapper.innerHTML = html;
insertElement(wrapper, collectionFiltersContainer, index);
return wrapper.firstChild;
}
/**
* Добавляет кнопку в строку фильтров резюме
* @param html HTML кнопки
* @param index Порядковый номер кнопки перед которой будет вставлена новая
* @returns Element Возвращает добавленную кнопку
*/
function addResumeFilterButton(html, index)
{
const wrapper = document.createElement('div');
wrapper.setAttribute('class', 'candidates-reject-controls');
wrapper.innerHTML = html;
insertElement(wrapper, applicationsFiltersContainer, index);
return wrapper.firstChild;
}
/* Global vars */
var collectionFiltersContainer;
var applicationsFiltersContainer;
/* Селекторы */
const selectorContainerVacancies = 'div.HH-Employer-VacancyResponse-AjaxSubmit-ResultContainer';
const selectorWrapperVacancies = 'div.HH-Employer-VacancyResponse-BatchActions-ItemsWrapper';
const selectorVacancyItem = selectorWrapperVacancies + ' div.resume-search-item:not([data-counter-name=""])';
const selectorButtonNextPage = 'a.bloko-button.HH-Pager-Control[data-qa="pager-next"]';
const selectorButtonFirstPage = 'a.bloko-button.HH-Pager-Control[data-page="0"]';
const selectorContainerApplications = '[data-qa="resume-serp__results-search"]';
const selectorApplicationItem = '[data-qa="resume-serp__resume"]';
const selectorApplicationsNavButtons = '[data-qa="pager-block"] .bloko-button-group a';
const selectorApplicationsNavButtonPageOne = '[data-qa="pager-block"] .bloko-button-group a:first-child';
const selectorApplicationsNavButtonFirstPage = '[data-qa="pager-block"] [data-qa="first-page"]';
const selectorApplicationsNavButtonNextPage = '[data-qa="pager-block"] [data-qa="pager-next"]';
/* Открыта страница откликов */
if (getUrlPathSegments() === 'employer/vacancyresponses' && [
'consider',
'phone_interview',
'assessment',
'interview',
'offer',
'hired',
'discard_by_employer'
].includes(getUrlParameterValue('collection')))
{
/* Добавление кнопок "Выбрать все" и "Скачать CSV" */
waitForElement('[data-qa="lux-container lux-container-rendered"] > div',
document.querySelector('form.vacancy-responses-filters')).then(container =>
{
collectionFiltersContainer = container.querySelector('.vacancy-responses-controls');
// Добавление кнопки "Скачать CSV"
addCollectionFilterButton('<button class="bloko-button">Скачать CSV</button>', 0)
.addEventListener('click', function (e)
{
e.preventDefault();
actionGrabVacancies();
});
// Добавление кнопки "Выбрать все"
addCollectionFilterButton('<input type="checkbox" title="Выбрать все" style="margin:13px 5px 0 0">', 0)
.addEventListener('click', function (e)
{
actionSelectAllVacancies(e.target);
});
}
);
}
/* Открыта страница "Все неразобранные" отклики */
if (getUrlPathSegments() === 'employer/vacancyresponses'
&& 'response' === getUrlParameterValue('collection'))
{
collectionFiltersContainer = document.querySelector('div.vacancy-responses-controls');
setTimeout(function ()
{
// Добавление кнопки "Скачать CSV"
addCollectionFilterButton('<button class="bloko-button">Скачать CSV</button>', 1)
.addEventListener('click', function (e)
{
e.preventDefault();
actionGrabVacancies();
});
}, 200)
}
/**
* --------------------------------------------------------------------------------------------------------------
* 1. Генерация CSV с откликами на вакансии
* --------------------------------------------------------------------------------------------------------------
*/
async function actionGrabVacancies()
{
let tempArrayVacancies = [];
let containerVacancies = await waitForElement(selectorContainerVacancies);
// Если не первая страница
let buttonFirstPage = document.querySelector(selectorButtonFirstPage);
if (buttonFirstPage)
{
eventFire(buttonFirstPage, 'click');
await waitForElement(selectorContainerVacancies + ' div[data-qa="pager-block"]');
}
// Парсинг текущей страницы
tempArrayVacancies = tempArrayVacancies.concat(await grubVacanciesPage(containerVacancies));
// Если есть следующая страница
let buttonNext = document.querySelector(selectorButtonNextPage);
while (buttonNext)
{
eventFire(buttonNext, 'click');
// Парсинг текущей страницы
await waitForElement(selectorContainerVacancies + ' div[data-qa="pager-block"]');
tempArrayVacancies = tempArrayVacancies.concat(await grubVacanciesPage(containerVacancies));
await delay(50);
buttonNext = document.querySelector(selectorButtonNextPage);
}
console.warn('ГОТОВО. Обработано: ' + tempArrayVacancies.length + ' вакансий');
// До конца функции - генерация CSV
let csv = '';
let delimiter = ';';
for (let row = 0; row < tempArrayVacancies.length; row++)
{
let keysAmount = Object.keys(tempArrayVacancies[row]).length
let keysCounter = 0
if (row === 0)
{
for (let key in tempArrayVacancies[row])
{
csv += '"' + key + (keysCounter + 1 < keysAmount ? ('"' + delimiter) : '"\r\n')
keysCounter++
}
}
keysCounter = 0
for (let key in tempArrayVacancies[row])
{
csv += '"' + tempArrayVacancies[row][key].replace(/["«»]/g, '').replace(delimiter, '') + (keysCounter + 1 < keysAmount ? ('"' + delimiter) : '"\r\n')
keysCounter++
}
keysCounter = 0
}
let link = document.createElement('a')
link.id = 'download-csv'
link.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(csv));
let currentdate = new Date();
let filename = 'export_vacancies_' + currentdate.getDate() + '-'
+ (currentdate.getMonth() + 1) + '-'
+ currentdate.getFullYear() + '_'
+ currentdate.getHours() + '-'
+ currentdate.getMinutes() + '-'
+ currentdate.getSeconds() + '.csv';
link.setAttribute('download', filename);
document.body.appendChild(link);
document.querySelector('#download-csv').click();
}
function grubVacanciesPage(wrapper)
{
return new Promise(async resolve =>
{
let items = wrapper.querySelectorAll(selectorVacancyItem);
let result = [];
for (var item of items)
{
result.push(await grabVacancyItem(item));
}
resolve(result);
});
}
async function grabVacancyItem(item)
{
return new Promise(async resolve =>
{
let age = item.querySelector('span[data-qa="resume-serp__resume-age"]').textContent;
let fullname = item.querySelector('.resume-search-item__fullname').textContent.split(',')[0].replace(age, '');
let lastPosition = '';
let lastCompany = '';
let period = '';
let lastPositionElement = item.querySelector('.resume-search-item__description-content[data-qa="resume-serp_resume-item-content"] div[data-hh-last-experience-id]');
if (lastPositionElement)
{
lastPosition = lastPositionElement.querySelector('.bloko-link-switch').textContent;
let parentContainer = lastPositionElement.closest('.resume-search-item__description-content');
lastCompany = (parentContainer.querySelector('.bloko-text-emphasis') || parentContainer.querySelector('span.resume-hidden-field_search')).textContent;
period = parentContainer.lastElementChild.textContent;
}
let phonesContainer = item.querySelectorAll('div[data-qa="resume-contacts-phone"]');
let phones = phonesContainer.length ? await getItemPhoneNumbers(phonesContainer) : '';
let outputAddition = item.querySelector('div.output__addition[data-qa="resume-serp__resume-additional"]');
let dates = outputAddition.querySelectorAll('div.resume-search-item__description-title');
let updatedDate = formatDateString(dates[0].innerText.replace('Обновлено ', ''));
let respondedDate = formatDateString(getFirstTextNode(dates[1].childNodes[0]).replace('Откликнулся ', ''));
let d = new Date(JSON.parse(
outputAddition.querySelector('[data-name="HH/LastActivityTime"]').dataset.params
).lastActivityTime);
let lastActivityDate = formatDateString(d.getDate() + ' ' + (d.getMonth() + 1) + ' ' + d.getFullYear() + ', ' + ('0' + d.getHours()).slice(-2) + ':' + ('0' + d.getMinutes()).slice(-2));
const compensationEl = item.querySelector('.resume-search-item__compensation')
|| item.querySelector('.resume-search-item__header > .bloko-text');
resolve({
'vacancy_name': item.querySelector('.resume-search-item__name').textContent,
'vacancy_link': item.querySelector('.resume-search-item__name').href,
'fullname': fullname,
'age': age,
'compensation': compensationEl.textContent,
'last_position': lastPosition,
'last_company': lastCompany,
'period': period,
'phone': phones,
'updated_date': updatedDate,
'responded_date': respondedDate,
'last_activity': lastActivityDate,
});
});
}
async function getItemPhoneNumbers(phonesContainer)
{
return new Promise(async resolve =>
{
let phonesStr = '';
for (let phone of phonesContainer)
{
let phoneStr = '';
let hiddenPhoneContainer = phone.querySelector('.resume__contacts-phone-hidden');
if (hiddenPhoneContainer)
{
let phoneTextContainer = hiddenPhoneContainer.querySelector('.HH-Resume-Contacts-PhoneNumber');
if (phoneTextContainer.dataset.phone)
{
phoneStr = phoneTextContainer.dataset.phone;
}
else
{
let showPhoneNumberButton = hiddenPhoneContainer.querySelector('button[data-qa="response-resume_show-phone-number"]');
if (showPhoneNumberButton)
{
setTimeout(function ()
{
eventFire(showPhoneNumberButton, 'click');
}, 200);
}
phoneStr = phoneTextContainer.textContent;
}
}
else
{
phoneStr = phone.textContent;
}
phonesStr += getPhoneNumbersFromString(phoneStr).join(', ') + ', ';
}
resolve(phonesStr.slice(0, -2));
});
}
/**
* --------------------------------------------------------------------------------------------------------------
* 2. Чекбокс - Выбрать все отклики
* --------------------------------------------------------------------------------------------------------------
*/
function actionSelectAllVacancies(checkbox)
{
let items = document.querySelectorAll(selectorContainerVacancies + ' ' + selectorVacancyItem);
for (var item of items)
{
if (checkbox.checked && !item.classList.contains('resume-search-item_checked') || !checkbox.checked && item.classList.contains('resume-search-item_checked'))
{
eventFire(item.querySelector('.bloko-checkbox'), 'click');
}
}
}
/**
* --------------------------------------------------------------------------------------------------------------
* 3. Walker по страницам с резюме
* --------------------------------------------------------------------------------------------------------------
*/
/* Открыта страница поиска подходящих резюме */
if (getUrlPathSegments() === 'search/resume')
{
if (getUrlParameterValue('helper_action') === 'download')
{
// Если идет процесс скачки файлов
applicationsPageWalker();
}
else if (getUrlParameterValue('helper_action') === 'invite')
{
// Если идет процесс рассылки приглашений
applicationsPageWalker();
}
else
{
// Если страница открыта обычным способом
/* Добавление кнопок "Скачать резюме" и "Пригласить" */
waitDomMutation('div', document.querySelector('#HH-React-Root .bloko-form-item', 'attributes'))
.then(() =>
{
applicationsFiltersContainer = document.querySelector('#HH-React-Root .resume-serp-filters');
addResumeFilterButton('<button class="bloko-button">Скачать резюме</button>', 4)
.addEventListener('click', function (e)
{
if (GM.getValue || confirm("Внимание! Локальное хранилище не включено. Продолжить работу?"))
{
// Если включено локальное хранилище или проигнорировано пользователем
applicationsPageWalker('download');
}
});
addResumeFilterButton('<button class="bloko-button">Пригласить</button>', 5)
.addEventListener('click', function (e)
{
applicationsPageWalker('invite');
});
});
}
/**
* Функция перехода по страницам поиска подходящих резюме
* @param action Текущее действие на странице
* @returns {Promise<void>}
*/
async function applicationsPageWalker(action = '')
{
const currentPage = parseInt(getUrlParameterValue('page')) || 0;
if (action || getUrlParameterValue('helper_action'))
{
if (action && currentPage !== 0)
{
// Если не первая страница и процесс парсинга еще не начат - перехожу к первой странице
const buttonFirstPage = document.querySelector(selectorApplicationsNavButtonFirstPage) || document.querySelector(selectorApplicationsNavButtonPageOne);
location.href = buttonFirstPage.href + '&helper_action=' + action;
}
else
{
// Начинаю или родолжаю парсить
await delay(1000);
action = action || getUrlParameterValue('helper_action');
// Парсинг текущей страницы
const applications = document.querySelectorAll(selectorContainerApplications + ' ' + selectorApplicationItem);
await processApplications(applications, action, resumeEachItemProcessTimeout);
const buttonNextPage = document.querySelector(selectorApplicationsNavButtonNextPage);
if (buttonNextPage)
{
// Если есть следующая страница - перехожу на нее
if (!getUrlParameterValue('helper_action'))
{
location.href = buttonNextPage.href + '&helper_action=' + action;
}
else
{
eventFire(buttonNextPage, 'click');
}
}
else
{
// Завершаю работу
history.pushState({}, null, location.href.replace('&helper_action=' + action, ''));
document.querySelectorAll(selectorApplicationsNavButtons).forEach(function (button)
{
button.href = button.href.replace('&helper_action=' + action, '')
});
console.warn('ГОТОВО. Обработано: ' + (currentPage + 1) + ' страниц');
}
}
}
}
/**
* Обработка каждого резюме на страницах поиска подходящих резюме
* @param applications Список резюме на странице
* @param action Текущее действие
* @param timeout Пауза после обработкт каждого резюме
* @returns {Promise<void>}
*/
async function processApplications(applications, action, timeout)
{
for (const item of applications)
{
const application_url = item.querySelector('[data-qa="resume-serp__resume-title"]').href;
const application_hash = getUrlPathSegments(application_url, 0, 1);
try
{
let result;
switch (action)
{
case "download":
if (GM.getValue && await GM.getValue(application_hash))
{
// Если ID резюме сохранен в хранилищи - значит был скачан прежде
continue;
}
else if (!GM.getValue)
{
}
result = await processChildWindowAction(action, application_url);
// Сохранение информации о скачаном файле резюме в хранилице tampermonkey
GM.getValue && await GM.setValue(application_hash, '1');
break;
case "invite":
if (item.querySelector('[data-qa="topic-state"]'))
{
// Приглашение уже отправлнео
continue;
}
result = await processChildWindowAction(action,
item.querySelector('[data-qa="employee-invite-on-topic"]').href);
break;
}
if (result)
{
console.log('Успешнно: "' + result.message + '". ID резюме: ' + application_hash);
}
}
catch (result)
{
console.error('Неудача: "' + result.message + '". ID резюме: ' + application_hash)
}
await delay(timeout);
}
}
/**
* Открывает соответсвующую действию дочернию страницу, и посылает ей запрос на действие
* @param action Действие
* @param url Адрес страницы
* @returns {Promise}
*/
function processChildWindowAction(action, url)
{
return new Promise(async (resolve, reject) =>
{
const childWindow = window.open(url + '&helper_action=' + action);
unsafeWindow.actionCloseChild = (result) =>
{
clearTimeout(window.actionTimeout);
childWindow.close();
if (result.status === 'ok')
{
resolve(result);
}
else
{
reject(result);
}
}
window.actionTimeout = setTimeout(() =>
{
childWindow.close();
reject({
status: 'error',
message: 'Сброс по таймеру. Ссылка на резюме: ' + url
});
}, skipApplicationActionTimeout);
})
}
}
/**
* --------------------------------------------------------------------------------------------------------------
* 3. - Скачать резюме
* --------------------------------------------------------------------------------------------------------------
*/
/* Открыта страница резюме */
if (getUrlPathSegments(null, 1) === 'resume')
{
const action = getUrlParameterValue('helper_action');
if (action === 'download')
{
downloadResume().then(function (result)
{
// Если успешно
// Запрос к родительскому окну на закрытие окна резюме через 1 секунду
setTimeout(function ()
{
window.opener.actionCloseChild(result);
}, 1000);
}).catch(function (result)
{
// Если неудача
// Запрос к родительскому окну на закрытие окна резюме
window.opener.actionCloseChild(result);
});
}
async function downloadResume()
{
return new Promise(async (resolve, reject) =>
{
// Получение ID резюме
const resume_hash = getUrlPathSegments(null, 0, 1);
// Получение имени
const personalNameElement = await waitForElement('[data-qa="resume-personal-name"]');
if (!personalNameElement)
{
reject({
status: 'error',
message: 'Имя соискателя не найдено или скрыто.',
id: resume_hash
});
return;
}
let personalName = personalNameElement.textContent;
// Получение номера телефона
const contactsBlock = await waitForElement('[data-qa="resume-block-contacts"]');
let phoneNumber = await getResumePhoneNumber(contactsBlock);
// Если номер телефона скрыт
if (!phoneNumber)
{
reject({
status: 'error',
message: 'Номер телефона не найден или скрыт.',
id: resume_hash
});
return;
}
// Форматирование номера телефона
phoneNumber = phoneNumber.replace('+', '');
// Формирование имени файла документа резюме
const fileName = phoneNumber + ' ' + personalName + '.doc';
// Формирование ссылки на файл документа резюме и последующий переход по ней
location.href = window.location.protocol + '//' + window.location.hostname +
'/resume_converter/' +
encodeURI(fileName) +
'?hash=' + resume_hash +
'&simhash=' + getUrlParameterValue('simhash') +
'&vacancyId=' + getUrlParameterValue('vacancyId') +
'&type=rtf&hhtmSource=resume&hhtmFrom=resume_search_result';
resolve({
status: 'ok',
message: 'Документ "' + fileName + '" скачан.',
hash: resume_hash
});
});
}
async function getResumePhoneNumber(source)
{
let showPhoneNumberButton = source.querySelector('[data-qa="response-resume_show-phone-number"]');
if (showPhoneNumberButton)
{ // Номер телефона скрыт
setTimeout(() =>
{
eventFire(showPhoneNumberButton, 'click');
}, 500);
source = await waitDomMutation('[data-qa="resume-serp_resume-item-content"]', source);
}
let numbers = getPhoneNumbersFromString(source.textContent);
return numbers && numbers.length
? clearPhoneNumber(numbers[0])
: null;
}
}
/**
* --------------------------------------------------------------------------------------------------------------
* 3. - Пригласить по теме Оценка
* --------------------------------------------------------------------------------------------------------------
*/
/* Открыта страница приглашения */
if (getUrlPathSegments() === 'employer/negotiations/change_topic')
{
const action = getUrlParameterValue('helper_action');
if (action === 'invite')
{
inviteOnAssessment().then(function (result)
{
// Если успешно
// Запрос к родительскому окну на закрытие окна
window.opener.actionCloseChild(result);
}).catch(function (result)
{
// Если неудача