2011-03-26 14:10:41 +01:00
|
|
|
/**
|
|
|
|
* Copyright 2009 Google Inc.
|
2011-07-07 19:59:34 +02:00
|
|
|
*
|
2011-03-26 14:10:41 +01:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2011-07-07 19:59:34 +02:00
|
|
|
*
|
2011-03-26 14:10:41 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-07-07 19:59:34 +02:00
|
|
|
*
|
2011-03-26 14:10:41 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS-IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2020-10-03 00:43:12 +02:00
|
|
|
const Cookies = require('./pad_utils').Cookies;
|
2020-10-03 05:46:41 +02:00
|
|
|
|
|
|
|
exports.padcookie = new class {
|
|
|
|
constructor() {
|
|
|
|
this.cookieName_ = window.location.protocol === 'https:' ? 'prefs' : 'prefsHttp';
|
|
|
|
const prefs = this.readPrefs_() || {};
|
|
|
|
delete prefs.userId;
|
|
|
|
delete prefs.name;
|
|
|
|
delete prefs.colorId;
|
|
|
|
this.prefs_ = prefs;
|
|
|
|
this.savePrefs_();
|
2011-03-26 14:10:41 +01:00
|
|
|
}
|
2011-07-07 19:59:34 +02:00
|
|
|
|
2020-10-03 05:46:41 +02:00
|
|
|
init() {
|
|
|
|
if (this.readPrefs_() == null) {
|
|
|
|
$.gritter.add({
|
|
|
|
title: 'Error',
|
|
|
|
text: html10n.get('pad.noCookie'),
|
|
|
|
sticky: true,
|
|
|
|
class_name: 'error',
|
|
|
|
});
|
|
|
|
}
|
2011-03-26 14:10:41 +01:00
|
|
|
}
|
|
|
|
|
2020-10-03 05:46:41 +02:00
|
|
|
readPrefs_() {
|
|
|
|
try {
|
2020-10-03 00:43:12 +02:00
|
|
|
const json = Cookies.get(this.cookieName_);
|
|
|
|
if (json == null) return null;
|
|
|
|
return JSON.parse(json);
|
2020-10-03 05:46:41 +02:00
|
|
|
} catch (e) {
|
2011-03-26 14:10:41 +01:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2011-07-07 19:59:34 +02:00
|
|
|
|
2020-10-03 05:46:41 +02:00
|
|
|
savePrefs_() {
|
2020-10-03 00:43:12 +02:00
|
|
|
Cookies.set(this.cookieName_, JSON.stringify(this.prefs_), {expires: 365 * 100});
|
2011-03-26 14:10:41 +01:00
|
|
|
}
|
2011-07-07 19:59:34 +02:00
|
|
|
|
2020-10-03 05:46:41 +02:00
|
|
|
getPref(prefName) {
|
|
|
|
return this.prefs_[prefName];
|
2011-03-26 14:10:41 +01:00
|
|
|
}
|
2019-04-16 00:34:29 +02:00
|
|
|
|
2020-10-03 05:46:41 +02:00
|
|
|
setPref(prefName, value) {
|
|
|
|
this.prefs_[prefName] = value;
|
|
|
|
this.savePrefs_();
|
2016-06-08 21:14:10 +02:00
|
|
|
}
|
2020-10-03 05:46:41 +02:00
|
|
|
}();
|