node-steamcommunity/examples/edit-group-announcement.js
2021-07-29 02:55:56 -04:00

119 lines
3.0 KiB
JavaScript

let SteamCommunity = require('../index.js');
let ReadLine = require('readline');
let community = new SteamCommunity();
let rl = ReadLine.createInterface({
input: process.stdin,
output: process.stdout
});
rl.question('Username: ', function(accountName) {
rl.question('Password: ', function(password) {
doLogin(accountName, password);
});
});
function doLogin(accountName, password, authCode, twoFactorCode, captcha) {
community.login({
accountName: accountName,
password: password,
authCode: authCode,
twoFactorCode: twoFactorCode,
captcha: captcha
}, function(err, sessionID, cookies, steamguard) {
if (err) {
if (err.message == 'SteamGuardMobile') {
rl.question('Steam Authenticator Code: ', function(code) {
doLogin(accountName, password, null, code);
});
return;
}
if (err.message == 'SteamGuard') {
console.log('An email has been sent to your address at ' + err.emaildomain);
rl.question('Steam Guard Code: ', function(code) {
doLogin(accountName, password, code);
});
return;
}
if (err.message == 'CAPTCHA') {
console.log(err.captchaurl);
rl.question('CAPTCHA: ', function(captchaInput) {
doLogin(accountName, password, authCode, twoFactorCode, captchaInput);
});
return;
}
console.log(err);
process.exit();
return;
}
console.log('Logged on!');
rl.question('Group ID: ', function(gid) {
community.getSteamGroup(gid, function(err, group) {
if (err) {
console.log(err);
process.exit(1);
}
group.getAllAnnouncements(function(err, announcements) {
if (announcements.length === 0) {
return console.log('This group has no announcements');
}
for (let i = announcements.length - 1; i >= 0; i--) {
console.log('[%s] %s %s: %s', announcements[i].date, announcements[i].aid, announcements[i].author, announcements[i].content);
}
rl.question('Would you like to delete delete or edit an annoucement? (Type edit/delete): ', function(choice) {
rl.question('Annoucement ID: ', function(aid) {
if (choice === 'edit') {
rl.question('New title: ', function(header) {
rl.question('New body: ', function(content) {
// EW THE PYRAMID!
// Try replace this with delete!
editAnnouncement(group, aid, header, content);
});
});
} else {
deleteAnnouncement(group, aid);
}
});
});
});
});
});
});
}
function editAnnouncement(group, aid, header, content) {
// Actual community method.
group.editAnnouncement(aid, header, content, function(error) {
if (!error) {
console.log('Annoucement edited!');
} else {
console.log('Unable to edit annoucement! %j', error);
process.exit(1);
}
});
}
function deleteAnnouncement(group, aid) {
// group.deleteAnnouncement(aid);
// Or
group.deleteAnnouncement(aid, function(err) {
if (!err) {
console.log('Deleted');
} else {
console.log('Error deleting announcement.');
}
});
}