1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00

Create keystore.js

This commit is contained in:
Zack 2016-12-13 06:59:04 -08:00 committed by GitHub
parent 12ca452230
commit 169e4b41c9

42
keystore/keystore.js Normal file
View File

@ -0,0 +1,42 @@
function save(key, value) {
c = new WebSocket('wss://cowyo.com/ws');
return new Promise(function (resolve, reject) {
try {
c.onopen = function (_) {
c.send(JSON.stringify({
TextData: JSON.stringify(value),
Title: `${key}`,
UpdateServer: true,
UpdateClient: false,
}));
return resolve(true);
}
} catch(e) {
return reject(e);
}
});
}
// save('hello2', 'world');
function get(key) {
c = new WebSocket('wss://cowyo.com/ws');
return new Promise(function (resolve, reject) {
try {
c.onmessage = function(evt) {
return resolve(JSON.parse(JSON.parse(evt.data).TextData));
}
c.onopen = function (_) {
c.send(JSON.stringify({
Title: `${key}`,
UpdateClient: true,
}));
};
} catch(e) {
return reject(e);
}
});
}