This repository has been archived by the owner on Apr 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
plugin_google.menu.js
150 lines (124 loc) · 5.37 KB
/
plugin_google.menu.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
// Copyright (c) 2016 Cloud9 IDE, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
define(function(require, exports, module) {
main.consumes = [
"Plugin", "menus", "ui", "c9", "layout", "dialog.alert", "dialog.error",
"google.cloud", "google.run",
];
main.provides = ["google.menu"];
return main;
function main(options, imports, register) {
//
// Imports
//
var Plugin = imports["Plugin"];
var menus = imports["menus"];
var ui = imports["ui"];
var c9 = imports["c9"];
var layout = imports["layout"];
var showAlert = imports["dialog.alert"].show;
var showError = imports["dialog.error"].show;
var googlecloud = imports["google.cloud"];
var googlerun = imports["google.run"];
//
// Plugin declaration
//
var plugin = new Plugin("Cloud9", main.consumes);
function load() {
var buttonMenu;
var itemProjectId;
var itemProjectNumber;
// initialize menus
menus.addItemByPath("google.cloud", null, 0, plugin);
menus.addItemByPath("google.cloud/Project ID",
(itemProjectId = new ui.item({disabled: true})), 50, plugin);
menus.addItemByPath("google.cloud/Project Number",
(itemProjectNumber = new ui.item({disabled: true})), 51, plugin);
menus.addItemByPath("google.cloud/~", new ui.divider(), 55, plugin);
menus.addItemByPath("google.cloud/Developers Console ↗︎", new ui.item({
onclick: function() {
googlecloud.getProjectId(function(err, projectId) {
window.open("https://console.developers.google.com/home/dashboard?project="
+ encodeURIComponent(projectId));
});
}
}), 100, plugin);
// initialize deploy button
var menuBarTools = layout.findParent({name: "run.gui"});
var buttonDeploy = ui.insertByIndex(menuBarTools, new ui.button({
id: "googleBtnDeploy",
skin: "c9-toolbarbutton-glossy",
caption: "Deploy",
class: "google deploybtn stopped",
onclick: function(e) {
googlerun.deploy();
},
}), 300, plugin);
// bind menu captions
buttonMenu = menus.get("google.cloud").item;
buttonMenu.setCaption("Loading…");
buttonMenu.$html.style = "background-color: #3B78E7; color: #fff;";
googlecloud.on("ready", function() {
googlecloud.getProjectName(function(err, projectName) {
buttonMenu.setCaption(projectName);
});
googlecloud.getProjectId(function(err, projectId) {
itemProjectId.setAttribute("caption", projectId);
});
googlecloud.getProjectNumber(function(err, projectNumber) {
itemProjectNumber.setAttribute("caption", "(#" + projectNumber + ")");
});
}, plugin);
googlecloud.on("error", function(err) {
showError(err.message || err);
if (err.message.match(/unauthorized_client/) || err.message.match(/invalid_grant/)) {
showAlert(
"Google Cloud Platform",
"Authentication expired, please sign in again and reload this workspace.",
"",
function() {
window.open("https://c9.io/auth/google");
}
);
}
buttonMenu.setCaption("Google: Connection Failed");
buttonMenu.$html.style = "background-color: #E73B3B; color: #fff;";
});
}
function unload() {
}
plugin.on("load", load);
plugin.on("unload", unload);
//
// Public API declaration
//
/**
* Render the Google Cloud Platform menus and buttons.
*/
plugin.freezePublicAPI({
getMenu: function() {
return menus.get("google.cloud");
},
});
register(null, {
"google.menu": plugin
});
}
});