aboutsummaryrefslogtreecommitdiffstats
path: root/etherpad/src/etherpad/control/pro/admin/license_manager_control.js
blob: ca6d6a6860c91f21132b62d99f121834a92ad3df (plain) (blame)
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
/**
 * Copyright 2009 Google Inc.
 * 
 * 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
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * 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.
 */

import("fileutils.writeRealFile");
import("stringutils");

import("etherpad.licensing");
import("etherpad.sessions.getSession");
import("etherpad.utils.*");
import("etherpad.pne.pne_utils");

import("etherpad.control.pro.admin.pro_admin_control");

jimport("java.lang.System.out.println");

//----------------------------------------------------------------
// license manager
//----------------------------------------------------------------

function getPath() {
  return '/ep/admin/pne-license-manager/';
}

function _getTemplateData(data) {
  var licenseInfo = licensing.getLicense();
  data.licenseInfo = licenseInfo;
  data.isUnlicensed = !licenseInfo;
  data.isEvaluation = licensing.isEvaluation();
  data.isExpired = licensing.isExpired();
  data.isTooOld = licensing.isVersionTooOld();
  data.errorMessage = (getSession().errorMessage || null);
  data.runningVersionString = pne_utils.getVersionString();
  data.licenseVersionString = licensing.getVersionString();
  return data;
}

function render_main_get() {
  licensing.reloadLicense();
  var licenseInfo = licensing.getLicense();
  if (!licenseInfo || licensing.isExpired()) {
    response.redirect(getPath()+'edit');
  }

  pro_admin_control.renderAdminPage('pne-license-manager', 
                                    _getTemplateData({edit: false}));
}

function render_edit_get() {
  licensing.reloadLicense();
  
  if (request.params.btn) { response.redirect(request.path); }

  var licenseInfo = licensing.getLicense();
  var oldData = getSession().oldLicenseData;
  if (!oldData) {
    oldData = {};
    if (licenseInfo) {
      oldData.orgName = licenseInfo.organizationName;
      oldData.personName = licenseInfo.personName;
    }
  }

  pro_admin_control.renderAdminPage('pne-license-manager', 
                                    _getTemplateData({edit: true, oldData: oldData}));

  delete getSession().errorMessage;
}

function render_edit_post() {
  pne_utils.enableTrackingAgain();

  function _trim(s) {
    if (!s) { return ''; }
    return stringutils.trim(s);
  }
  function _clean(s) {
    s = s.replace(/\W/g, '');
    s = s.replace(/\+/g, '');
    return s;
  }

  if (request.params.cancel) {
    delete getSession().oldLicenseData;
    response.redirect(getPath());
  }

  var personName = _trim(request.params.personName);
  var orgName = _trim(request.params.orgName);
  var licenseString = _clean(request.params.licenseString);

  getSession().oldLicenseData = {
    personName: personName, orgName: orgName, licenseString: licenseString};

  var key = [personName,orgName,licenseString].join(":");
  println("validating key [ "+key+" ]");

  if (!licensing.isValidKey(key)) {
    getSession().errorMessage = "Invalid License Key";
    response.redirect(request.path);
  }

  // valid key.  write to disk.
  var writeSuccess = false;
  try {
    println("writing key file: ./data/license.key");
    writeRealFile("./data/license.key", key);
    writeSuccess = true;
  } catch (ex) {
    println("exception: "+ex);
    getSession().errorMessage = "Failed to write key to disk. (Do you have permission to write ./data/license.key ?).";
  }
  response.redirect(getPath());
}