lbry-desktop/ui/js/actions/settings.js

138 lines
3.1 KiB
JavaScript
Raw Normal View History

2017-06-06 23:19:12 +02:00
import * as types from "constants/action_types";
2017-08-08 11:36:14 +02:00
import batchActions from "util/batchActions";
2017-06-06 23:19:12 +02:00
import lbry from "lbry";
2017-08-08 11:36:14 +02:00
import fs from "fs";
import http from "http";
export function doFetchDaemonSettings() {
return function(dispatch, getState) {
2017-06-06 23:19:12 +02:00
lbry.settings_get().then(settings => {
dispatch({
type: types.DAEMON_SETTINGS_RECEIVED,
data: {
2017-06-06 23:19:12 +02:00
settings,
},
});
});
};
}
export function doSetDaemonSetting(key, value) {
return function(dispatch, getState) {
let settings = {};
settings[key] = value;
2017-06-06 23:19:12 +02:00
lbry.settings_set(settings).then(settings);
lbry.settings_get().then(settings => {
dispatch({
type: types.DAEMON_SETTINGS_RECEIVED,
data: {
2017-06-06 23:19:12 +02:00
settings,
},
});
});
};
2017-06-06 06:21:55 +02:00
}
2017-06-28 09:12:01 +02:00
export function doSetClientSetting(key, value) {
lbry.setClientSetting(key, value);
return {
type: types.CLIENT_SETTING_CHANGED,
data: {
key,
value,
},
};
}
2017-08-08 11:36:14 +02:00
2017-08-19 20:03:51 +02:00
export function doDownloadLanguage(langFile) {
2017-08-08 11:36:14 +02:00
return function(dispatch, getState) {
2017-08-19 20:03:51 +02:00
const destinationPath = `app/locales/${langFile}`;
const language = langFile.replace(".json", "");
const req = http.get(
{
headers: {
"Content-Type": "text/html",
},
host: "i18n.lbry.io",
path: `/langs/${langFile}`,
},
response => {
if (response.statusCode === 200) {
const file = fs.createWriteStream(destinationPath);
file.on("error", errorHandler);
2017-08-08 11:36:14 +02:00
file.on("finish", () => {
file.close();
// push to our local list
dispatch({
type: types.DOWNLOAD_LANGUAGE_SUCCEEDED,
2017-08-19 20:03:51 +02:00
data: { language: language },
2017-08-08 11:36:14 +02:00
});
});
response.pipe(file);
2017-08-19 20:03:51 +02:00
} else {
errorHandler(new Error("Language request failed."));
2017-08-08 11:36:14 +02:00
}
2017-08-19 20:03:51 +02:00
}
);
2017-08-08 11:36:14 +02:00
2017-08-19 20:03:51 +02:00
const errorHandler = err => {
fs.unlink(destinationPath, () => {}); // Delete the file async. (But we don't check the result)
2017-08-08 11:36:14 +02:00
2017-08-19 20:03:51 +02:00
dispatch({
type: types.DOWNLOAD_LANGUAGE_FAILED,
data: { language },
});
};
2017-08-08 11:36:14 +02:00
2017-08-19 20:03:51 +02:00
req.setTimeout(30000, function() {
req.abort();
2017-08-08 11:36:14 +02:00
});
2017-08-19 20:03:51 +02:00
req.on("error", errorHandler);
req.end();
2017-08-08 11:36:14 +02:00
};
}
export function doDownloadLanguages() {
return function(dispatch, getState) {
if (!fs.existsSync(app.i18n.directory)) {
fs.mkdirSync(app.i18n.directory);
2017-08-08 11:36:14 +02:00
}
2017-08-19 20:03:51 +02:00
const req = http.request({ host: "i18n.lbry.io", path: "/" }, response => {
let str = "";
2017-08-08 11:36:14 +02:00
2017-08-19 20:03:51 +02:00
response.on("data", chunk => {
str += chunk;
});
2017-08-08 11:36:14 +02:00
2017-08-19 20:03:51 +02:00
response.on("end", () => {
const files = JSON.parse(str);
const actions = [];
files.forEach(file => {
actions.push(doDownloadLanguage(file));
});
2017-08-08 11:36:14 +02:00
2017-08-19 20:03:51 +02:00
dispatch(batchActions(...actions));
2017-08-08 11:36:14 +02:00
});
2017-08-19 20:03:51 +02:00
});
2017-08-08 11:36:14 +02:00
2017-08-19 20:03:51 +02:00
req.on("error", err => {
throw err; //this ought to be cleanly handled
2017-08-08 11:36:14 +02:00
});
2017-08-19 20:03:51 +02:00
req.end();
};
}
export function doChangeLanguage(language) {
return function(dispatch, getState) {
app.i18n.setLocale(language);
2017-08-08 11:36:14 +02:00
};
}