-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmission_exporter.user.js
130 lines (120 loc) · 4.44 KB
/
mission_exporter.user.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
// ==UserScript==
// @name IITC: Export missions to IngressMM (by DeepAQ)
// @namespace http://smartintel.imaq.cn/
// @version 1.3
// @description Export missions in view to IngressMM
// @author DeepAQ
// @include https://*.ingress.com/intel*
// @include http://*.ingress.com/intel*
// @match https://*.ingress.com/intel*
// @match http://*.ingress.com/intel*
// @include https://*.ingress.com/mission/*
// @include http://*.ingress.com/mission/*
// @match https://*.ingress.com/mission/*
// @match http://*.ingress.com/mission/*
// @grant unsafeWindow
// @grant GM_xmlhttpRequest
// @connect ingressmm.com
// ==/UserScript==
var portals = [];
var missions = [];
unsafeWindow.exportMissions = {};
unsafeWindow.exportMissions.log = function (s) {
$('#missions_export_result').append(s + '<br />');
$('#missions_export_result')[0].scrollTop = $('#missions_export_result')[0].scrollHeight;
};
unsafeWindow.exportMissions.processMissions = function () {
if (missions.length > 0) {
var mission = missions[0];
missions = missions.slice(1);
exportMissions.log('>>> Processing mission: ' + mission[1] + ' (' + missions.length + ' left)');
unsafeWindow.postAjax('getMissionDetails', {
guid: mission[0]
}, function (result) {
GM_xmlhttpRequest({
method: 'POST',
url: 'http://ingressmm.com/post.php',
data: $.param({data: result.result}),
headers: {
"Content-Type": "application/x-www-form-urlencoded"
},
});
exportMissions.processMissions();
}, function () {
exportMissions.log('Error loading mission data');
exportMissions.processMissions();
});
} else {
exportMissions.processPortals();
}
};
unsafeWindow.exportMissions.processPortals = function () {
if (portals.length > 0) {
var po = portals[0];
portals = portals.slice(1);
if (po.options) {
exportMissions.log('>> Processing portal: ' + po.options.data.title + ' (' + portals.length + ' left)');
po = po.options.guid;
} else {
exportMissions.log('>> Processing portal: ' + po + ' (' + portals.length + ' left)');
}
unsafeWindow.postAjax('getTopMissionsForPortal', {
guid: po,
}, function (data) {
if (data.result) {
missions = data.result;
}
exportMissions.processMissions();
}, function (error) {
exportMissions.log('Error loading portal missions');
exportMissions.processPortals();
});
} else {
exportMissions.log('> Done!');
}
};
unsafeWindow.exportMissions.showDialog = function () {
dialog({
html: '<div id="missions_export_result" style="height: 400px; overflow-y: scroll;">',
title: 'AQMH Mission Exporter',
width: '500px',
}).dialog('option', 'buttons', {
'Abort': function () {
portals = [];
missions = [];
$(this).dialog('close');
},
});
};
unsafeWindow.exportMissions.start = function () {
portals = [];
missions = [];
exportMissions.showDialog();
var bounds = unsafeWindow.map.getBounds();
for (var guid in unsafeWindow.portals) {
var po = unsafeWindow.portals[guid];
if (po.options && po.options.data) {
if (po.options.data.latE6 > bounds.getSouth() * 1E6 &&
po.options.data.latE6 < bounds.getNorth() * 1E6 &&
po.options.data.lngE6 > bounds.getWest() * 1E6 &&
po.options.data.lngE6 < bounds.getEast() * 1E6 &&
(po.options.data.mission || po.options.data.mission50plus)
) {
portals.push(po);
}
}
}
exportMissions.log("> Found " + portals.length + " mission start portals in view!");
exportMissions.processPortals();
};
unsafeWindow.exportMissions.startFromPrompt = function () {
var input = prompt('Enter portal GUIDs, splitted by comma(,) :');
portals = input.split(',');
missions = [];
exportMissions.showDialog();
exportMissions.processPortals();
};
var setup = function () {
$('#toolbox').append('<strong>Export missions from:</strong><a onclick="window.exportMissions.start();">View</a><a onclick="window.exportMissions.startFromPrompt();">GUIDs</a>');
};
setTimeout(setup, 1000);