This file is indexed.

/usr/lib/python2.7/dist-packages/sagenb/notebook/user.py is in python-sagenb 1.0.1+ds1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
# -*- coding: utf-8 -*
from __future__ import absolute_import
import copy
import crypt
import random
import hashlib
import os

try:
    import cPickle as pickle
except ImportError:
    import pickle

from six import iteritems

SALT = 'aa'

from . import user_conf

from sage.misc.temporary_file import atomic_write

def User_from_basic(basic):
    """
    Create a user from a basic data structure.
    """
    user = User(basic['username'])
    user.__dict__.update(dict([('_' + x, y) for x, y in iteritems(basic)]))
    user._conf = user_conf.UserConfiguration_from_basic(user._conf)
    return user


def generate_salt():
    """
    Returns a salt for use in hashing.
    """
    return hex(random.getrandbits(256))[2:-1]

    
class User(object):
    def __init__(self, username, password='', email='', account_type='admin', external_auth=None):
        self._username = username
        self.set_password(password)
        self._email = email
        self._email_confirmed = False
        if not account_type in ['admin', 'user', 'guest']:
            raise ValueError("account type must be one of admin, user, or guest")
        self._account_type = account_type
        self._external_auth = external_auth
        self._conf = user_conf.UserConfiguration()
        self._temporary_password = ''
        self._is_suspended = False
        self._viewable_worksheets = set()

    def __eq__(self, other):
        if self.__class__ is not other.__class__:
            return False
        elif self.username() != other.username():
            return False
        elif self.get_email() != other.get_email():
            return False
        elif self.conf() != other.conf():
            return False
        elif self.account_type() != other.account_type():
            return False
        else:
            return True

    def __getstate__(self):
        d = copy.copy(self.__dict__)

        # Some old worksheets have this attribute, which we do *not* want to save.
        if 'history' in d:
            try:
                self.save_history()
                del d['history']
            except Exception as msg:
                print(msg)
                print("Unable to dump history of user %s to disk yet." % self._username)
        return d

    def basic(self):
        """
        Return a basic Python data structure from which self can be
        reconstructed.
        """
        d = {x[1:]: y for x, y in iteritems(self.__dict__) if x[0] == '_'}
        d['conf'] = self._conf.basic()
        return d

    def history_list(self):
        try:
            return self.history
        except AttributeError:
            from . import misc   # late import
            if misc.notebook is None: return []       
            history_file = "%s/worksheets/%s/history.sobj"%(misc.notebook.directory(), self._username)
            if os.path.exists(history_file):
                try:
                    self.history = pickle.load(open(history_file))
                except:
                    print("Error loading history for user %s" % self._username)
                    self.history = []
            else:
                self.history = []
            return self.history    

    def save_history(self):
        if not hasattr(self, 'history'):
            return
        from . import misc   # late import
        if misc.notebook is None: return
        history_file = "%s/worksheets/%s/history.sobj"%(misc.notebook.directory(), self._username)
        try:
            his = pickle.dumps(self.history)
        except AttributeError:
            his = pickle.dumps([])
        with atomic_write(history_file) as f:
            f.write(his)

    def username(self):
        """
        EXAMPLES::

            sage: from sagenb.notebook.user import User
            sage: User('andrew', 'tEir&tiwk!', 'andrew@matrixstuff.com', 'user').username()
            'andrew'
            sage: User('sarah', 'Miaasc!', 'sarah@ellipticcurves.org', 'user').username()
            'sarah'
            sage: User('bob', 'Aisfa!!', 'bob@sagemath.net', 'admin').username()
            'bob'
        """
        return self._username

    def password(self):
        """
        Deprecated. Use user_manager object instead. 
        EXAMPLES::

            sage: from sagenb.notebook.user import User
            sage: User('andrew', 'tEir&tiwk!', 'andrew@matrixstuff.com', 'user').password() #random
        """
        return self._password

    def __repr__(self):
        return self._username

    def conf(self):
        """
        EXAMPLES::

            sage: from sagenb.notebook.user import User
            sage: config = User('bob', 'Aisfa!!', 'bob@sagemath.net', 'admin').conf(); config
            Configuration: {}
            sage: config['max_history_length']
            1000
            sage: config['default_system']
            'sage'
            sage: config['autosave_interval']
            3600
            sage: config['default_pretty_print']
            False
        """
        return self._conf

    def __getitem__(self, *args):
        return self._conf.__getitem__(*args)

    def __setitem__(self, *args):
        self._conf.__setitem__(*args)

    def set_password(self, password, encrypt=True):
        """
        EXAMPLES::

            sage: from sagenb.notebook.user import User
            sage: user = User('bob', 'Aisfa!!', 'bob@sagemath.net', 'admin')
            sage: old = user.password()
            sage: user.set_password('Crrc!')
            sage: old != user.password()
            True
        """
        if password == '':
            self._password = 'x'   # won't get as a password -- i.e., this account is closed.
        else:
            if encrypt:
                salt = generate_salt()
                self._password = 'sha256${0}${1}'.format(salt,
                                                         hashlib.sha256(salt + password).hexdigest())
            else:
                self._password = password
            self._temporary_password = ''

    def set_hashed_password(self, password):
        """
        EXAMPLES::

            sage: from sagenb.notebook.user import User
            sage: user = User('bob', 'Aisfa!!', 'bob@sagemath.net', 'admin')
            sage: user.set_hashed_password('Crrc!')
            sage: user.password()
            'Crrc!'
        """
        self._password = password
        self._temporary_password = ''

    def get_email(self):
        """
        EXAMPLES::

            sage: from sagenb.notebook.user import User
            sage: user = User('bob', 'Aisfa!!', 'bob@sagemath.net', 'admin')
            sage: user.get_email()
            'bob@sagemath.net'
        """
        return self._email

    def set_email(self, email):
        """
        EXAMPLES::

            sage: from sagenb.notebook.user import User
            sage: user = User('bob', 'Aisfa!!', 'bob@sagemath.net', 'admin')
            sage: user.get_email()
            'bob@sagemath.net'
            sage: user.set_email('bob@gmail.gov')
            sage: user.get_email()
            'bob@gmail.gov'
        """
        self._email = email
        
    def set_email_confirmation(self, value):
        """
        EXAMPLES::

            sage: from sagenb.notebook.user import User
            sage: user = User('bob', 'Aisfa!!', 'bob@sagemath.net', 'admin')
            sage: user.is_email_confirmed()
            False
            sage: user.set_email_confirmation(True)
            sage: user.is_email_confirmed()
            True
            sage: user.set_email_confirmation(False)
            sage: user.is_email_confirmed()
            False
        """
        value = bool(value)
        self._email_confirmed = value
        
    def is_email_confirmed(self):
        """
        EXAMPLES::

            sage: from sagenb.notebook.user import User
            sage: user = User('bob', 'Aisfa!!', 'bob@sagemath.net', 'admin')
            sage: user.is_email_confirmed()
            False
        """
        try:
            return self._email_confirmed
        except AttributeError:
            self._email_confirmed = False
            return False

    def account_type(self):
        """
        EXAMPLES::

            sage: from sagenb.notebook.user import User
            sage: User('A', account_type='admin').account_type()
            'admin'
            sage: User('B', account_type='user').account_type()
            'user'
            sage: User('C', account_type='guest').account_type()
            'guest'
        """
        if self._username == 'admin':
            return 'admin'
        return self._account_type
    
    def is_admin(self):
        """
        EXAMPLES::

            sage: from sagenb.notebook.user import User
            sage: User('A', account_type='admin').is_admin()
            True
            sage: User('B', account_type='user').is_admin()
            False
        """
        return self.account_type() == 'admin'

    def grant_admin(self):
        if not self.is_guest():
            self._account_type = 'admin'

    def revoke_admin(self):
        if not self.is_guest():
            self._account_type = 'user'

    def is_guest(self):
        """
        EXAMPLES::

            sage: from sagenb.notebook.user import User
            sage: User('A', account_type='guest').is_guest()
            True
            sage: User('B', account_type='user').is_guest()
            False
        """
        return self.account_type() == 'guest'

    def is_external(self):
        return self.external_auth() is not None

    def external_auth(self):
        return self._external_auth
        
    def is_suspended(self):
        """
        EXAMPLES::

            sage: from sagenb.notebook.user import User
            sage: user = User('bob', 'Aisfa!!', 'bob@sagemath.net', 'admin')
            sage: user.is_suspended()
            False
        """
        try:
            return self._is_suspended
        except AttributeError:
            return False
        
    def set_suspension(self):
        """
        EXAMPLES::

            sage: from sagenb.notebook.user import User
            sage: user = User('bob', 'Aisfa!!', 'bob@sagemath.net', 'admin')
            sage: user.is_suspended()
            False
            sage: user.set_suspension()
            sage: user.is_suspended()
            True
            sage: user.set_suspension()
            sage: user.is_suspended()
            False
        """
        try:
            self._is_suspended = False if self._is_suspended else True
        except AttributeError:
            self._is_suspended = True

    def viewable_worksheets(self):
        """
        Returns the (mutable) set of viewable worksheets.

        The elements of the set are of the form ('owner',id),
        identifying worksheets the user is able to view.
        """
        return self._viewable_worksheets