aboutsummaryrefslogtreecommitdiffstats
path: root/etherpad/src/etherpad/pad/padutils.js
blob: 3ffe70cbe880ef2fd3a6d01359001a4f8c7371a4 (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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/**
 * 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("fastJSON");
import("stringutils");

import("etherpad.control.pro.account_control");

import("etherpad.pro.pro_utils");
import("etherpad.pro.domains");
import("etherpad.pro.pro_accounts");
import("etherpad.pro.pro_padmeta");
import("etherpad.pad.model");
import("etherpad.sessions.getSession");

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


function setCurrentPad(p) {
  appjet.context.attributes().update("currentPadId", p);
}

function clearCurrentPad() {
  appjet.context.attributes()['$minus$eq']("currentPadId");
}

function getCurrentPad() {
  var padOpt = appjet.context.attributes().get("currentPadId");
  if (padOpt.isEmpty()) return null;
  return padOpt.get();
}

function _parseCookie(text) {
  try {
    var cookieData = fastJSON.parse(unescape(text));
    return cookieData;
  }
  catch (e) {
    return null;
  }
}

function getPrefsCookieData() {
  var prefsCookie = request.cookies['prefs'];
  if (!prefsCookie) {
    return null;
  }

  return _parseCookie(prefsCookie);
}

function getPrefsCookieUserId() {
  var cookieData = getPrefsCookieData();
  if (! cookieData) {
    return null;
  }
  return cookieData.userId || null;
}

/**
 * Not valid to call this function outisde a HTTP request.
 */
function accessPadLocal(localPadId, fn, rwMode) {
  if (!request.isDefined) {
    throw Error("accessPadLocal() cannot run outside an HTTP request.");
  }
  var globalPadId = getGlobalPadId(localPadId);
  var fnwrap = function(pad) {
    pad.getLocalId = function() {
      return getLocalPadId(pad);
    };
    return fn(pad);
  }
  return model.accessPadGlobal(globalPadId, fnwrap, rwMode);
}

/**
 * Not valid to call this function outisde a HTTP request.
 */
function getGlobalPadId(localPadId) {
  if (!request.isDefined) {
    throw Error("getGlobalPadId() cannot run outside an HTTP request.");
  }
  if (pro_utils.isProDomainRequest()) {
    return makeGlobalId(domains.getRequestDomainId(), localPadId);
  } else {
    // pad.spline.inf.fu-berlin.de pads
    return localPadId;
  }
}

function makeGlobalId(domainId, localPadId) {
  return [domainId, localPadId].map(String).join('$');
}

function globalToLocalId(globalId) {
  var parts = globalId.split('$');
  if (parts.length == 1) {
    return parts[0];
  } else {
    return parts[1];
  }
}

function getLocalPadId(pad) {
  var globalId = pad.getId();
  return globalToLocalId(globalId);
}

function isProPadId(globalPadId) {
  return (globalPadId.indexOf("$") > 0);
}

function isProPad(pad) {
  return isProPadId(pad.getId());
}

function getDomainId(globalPadId) {
  var parts = globalPadId.split("$");
  if (parts.length < 2) {
    return null;
  } else {
    return Number(parts[0]);
  }
}

function makeValidLocalPadId(str) {
  return str.replace(/[^a-zA-Z0-9\-]/g, '-');
}

function getProDisplayTitle(localPadId, title) {
  if (title) {
    return title;
  }
  if (stringutils.isNumeric(localPadId)) {
    return ("Untitled "+localPadId);
  } else {
    return (localPadId);
  }
}