コード例 #1
0
    def handle_add_frame_connection(self, frame_ws):
        """
        Handles frame:connected event. Should add the new frame connection
        to the in-memory connected frame list.

        @param frame_ws - a reference to the websocket connection object
        """
        print('FrameManager::handle_add_frame_connection: ' +
              frame_ws.frame_id)

        # mark frame "connected" in DB then attach the frame object to
        # the websocket connection object for easy access later
        frame_ws.frame = Frames.update_by_id(frame_ws.frame_id,
                                             {"connected": True})

        frame_ws.frame = Frames.get_by_id(frame_ws.frame_id)

        # add the frame websocket connection to the in-memory list of frames
        self.frames[frame_ws.frame_id] = frame_ws

        # If the connected frame has current content set, send it along
        if 'current_content' in frame_ws.frame:
            # send content to frame if frame connected
            self.frames[frame_ws.frame_id].send(
                'frame:update_content',
                frame_ws.frame['current_content'])
コード例 #2
0
    def handle_update_frame(self, frame):
        """
        Persist the frame, publish the update out to connected
        frames (the frame and all mirroring) and admins
        """
        frame = Frames.update_by_id(frame['_id'], frame)

        # if the mirroring frame was mirroring a different frame,
        # update the previous frame's mirror count
        previous_mirroring_id = None
        if 'mirroring' in frame and frame['mirroring'] is not None:
            previous_mirroring_id = frame['mirroring']

        # set the current content for updating frame
        doc = {
            'current_content': frame['current_content']
        }

        # kick off the recursive content updates down the mirror graph
        self.update_mirroring_frames(frame, doc, root=True)

        # if the frame was mirroring a different frame,
        # update the previous frame's mirroring count
        if previous_mirroring_id:
            Frames.update_mirroring_count(previous_mirroring_id)
            self.pubsub.publish(
                'frame:frame_updated', frame_id=previous_mirroring_id)
コード例 #3
0
    def update_mirroring_frames(self, frame, doc, root=False):
        # if this is a content update, it should become the root.
        # i.e we want to reset its mirroring data
        if (root):
            doc['mirroring'] = None
            doc['mirror_meta'] = {}
            # if root, update frame in db
            frame = Frames.update_by_id(frame['_id'], doc)

        # aside from the root save, make sure we're not changing any
        # mirroring settings on the frames -- just content
        if 'mirroring' in doc:
            del doc['mirroring']
        if 'mirror_meta' in doc:
            del doc['mirror_meta']

        # publish frame:frame_updated event, handled in admin_manager
        # (sends changes out to connected admins who are users of this frame)
        self.pubsub.publish(
            'frame:frame_updated', frame=frame)

        # if this frame is connected, push out the new content to it
        self.update_frame_content(frame, doc['current_content'])

        # update all frames which are mirroring this one in batch fashion
        mirroring_frames = Frames.update_mirroring_frames(
            frame['_id'], doc)

        # for each frame that was mirrored, do it all again
        # at each leaf on the tree mirroring_frames should be
        # an empty list, halting recursion
        for frame in mirroring_frames:
            self.update_mirroring_frames(frame, doc)
コード例 #4
0
ファイル: frames.py プロジェクト: bmwasaru/Openframe-Server
 def get(self, frame_id=None):
     if frame_id:
         print('get frame: ' + frame_id)
         frame_resp = Frames.get_by_id(frame_id)
     else:
         frame_resp = Frames.get_all()
     _unify_ids(frame_resp)
     self.write(dumps(frame_resp))
コード例 #5
0
 def get_by_frame_id(frame_id):
     """
     Get a list of users which have access this frame
     """
     frame = Frames.get_by_id(frame_id)
     users = Users.collection.find({'username': {'$in': frame['users']}})
     return users
コード例 #6
0
ファイル: frames.py プロジェクト: bmwasaru/Openframe-Server
 def post(self):
     print('create frame item')
     doc = json_decode(self.request.body.decode('utf-8'))
     result = Frames.insert(doc)
     if not result:
         print('Problem inserting new frame')
     _unify_ids(doc)
     self.write(dumps(doc))
コード例 #7
0
ファイル: frames.py プロジェクト: bmwasaru/Openframe-Server
 def put(self, frame_id):
     print('update frame: ' + frame_id)
     doc = json_decode(self.request.body.decode('utf-8'))
     result = Frames.update_by_id(frame_id, doc)
     if not result:
         print('Problem updating frame')
     _unify_ids(result)
     self.write(dumps(result))
コード例 #8
0
 def get(self, frame_id, username, framename):
     frame = Frames.get_by_id(frame_id)
     print(frame)
     if not frame:
         print("No frame, create it.")
         Frames.insert({
             "_id": frame_id,
             "owner": username,
             "name": framename,
             "users": [
                 username
             ],
             "settings": {
                 "visible": True
             }
         })
     self.render("frame.html", frame_id=frame_id, port=options.port)
コード例 #9
0
ファイル: frames.py プロジェクト: bmwasaru/Openframe-Server
 def get(self, username):
     connected = self.get_argument('connected', None)
     if username:
         resp = Frames.get_by_username(username, connected)
     else:
         print('username missing')
         resp = {'error': 'username required'}
     _unify_ids(resp)
     self.write(dumps(resp))
コード例 #10
0
 def handle_admin_connected(self, admin_ws):
     """
     When a new admin connects, clean up the 'connected' statuses of
     the user's frames.
     """
     user_frames = Frames.get_by_username(admin_ws.user['username'])
     # iterate through all user's frames and update the connected flag
     for frame in user_frames:
         if frame['_id'] in self.frames:
             # the frame is connected
             if 'connected' not in frame or frame['connected'] is False:
                 # but isn't marked so in the db, set it.
                 frame = Frames.update_by_id(
                     frame['_id'], {'connected': True})
         else:
             # the frame is NOT connected
             if 'connected' not in frame or frame['connected'] is True:
                 # but is marked so in the db, set it.
                 frame = Frames.update_by_id(
                     frame['_id'], {'connected': False})
コード例 #11
0
 def get(self, username=None):
     if self.current_user != username:
         self.redirect('/login')
     frames = []
     content = []
     timestamp = time.time()
     if username:
         frames = Frames.get_by_username(username, connected=True)
         content = Content.get_by_username(username)
     self.render(
         "index.html", user=username, frames=frames,
         content=content, timestamp=timestamp
     )
コード例 #12
0
    def handle_remove_frame_connection(self, frame_ws):
        """
        Handles frame:disconnected event. Should remove the frame
        from the in-memory connected frame list.
        """
        print('FrameManager::handle_remove_frame_connection: ' +
              frame_ws.frame_id)

        # mark frame "connected: false" in DB then attach the frame object to
        # the websocket connection object for easy access later
        frame_ws.frame = Frames.update_by_id(frame_ws.frame_id,
                                             {"connected": False})

        del self.frames[frame_ws.frame_id]
コード例 #13
0
 def remove_frame_connection(self, frame_ws):
     print('AdminManager::remove_frame_connection: ' + frame_ws.frame_id)
     # get frame object from db
     frame = Frames.get_by_id(frame_ws.frame_id)
     # get users for this frame
     users = Users.get_by_frame_id(frame_ws.frame_id)
     # for each user, if the user is connected,
     # send frame:disconnected to the
     # websocket client
     for user in users:
         user_id = user['_id']
         if user_id in self.admins:
             for ws_uuid in self.admins[user_id]:
                 self.admins[user_id][ws_uuid].send(
                     'frame:disconnected', frame)
コード例 #14
0
 def update_admin_frame(self, frame=None, frame_id=None):
     print('AdminManager::update_admin_frame')
     print(frame)
     if frame_id is not None:
         frame = Frames.get_by_id(frame_id)
     # get users for this frame
     users = Users.get_by_frame_id(frame['_id'])
     # for each user, if the user is connected, send frame:updated event to
     # websocket client (i.e. to admin page)
     for user in users:
         user_id = user['_id']
         if user_id in self.admins:
             for ws_uuid in self.admins[user_id]:
                 self.admins[user_id][ws_uuid].send(
                     'frame:frame_updated', frame)
コード例 #15
0
    def handle_mirror_frame(self, frame_id, mirrored_frame_id):
        """
        Set a frame to mirror another frame.

        Returns the from which is mirroring the other.
        """

        # if the mirroring frame was mirroring a different frame,
        # update the previous frame's mirror count
        previous_mirroring_id = None
        frame = Frames.get_by_id(frame_id)
        if 'mirroring' in frame and frame['mirroring'] is not None:
            previous_mirroring_id = frame['mirroring']

        mirrored_frame = Frames.get_by_id(mirrored_frame_id)
        content = mirrored_frame['current_content']

        doc = {
            'mirroring': mirrored_frame_id,
            'mirror_meta': {
                'name': mirrored_frame['name'],
                'owner': mirrored_frame['owner']
            },
            'current_content': content
        }

        # update this frame to mirror mirrored_frame_id
        frame = Frames.update_by_id(frame_id, doc)

        # if set, update the previously mirrored frame
        if previous_mirroring_id:
            Frames.update_mirroring_count(previous_mirroring_id)
            self.pubsub.publish(
                'frame:frame_updated', frame_id=previous_mirroring_id)

        # update the mirroring_count on the newly mirrored frame
        Frames.update_mirroring_count(mirrored_frame_id)
        self.pubsub.publish(
            'frame:frame_updated', frame_id=mirrored_frame_id)

        # kick off the recursive content updates down the mirror graph
        self.update_mirroring_frames(frame, doc)
コード例 #16
0
ファイル: frames.py プロジェクト: bmwasaru/Openframe-Server
 def get(self, frame_id=None):
     # frames = Frames.get_public(username=self.current_user)
     frames = Frames.get_public()
     _unify_ids(frames)
     self.write(dumps(frames))
コード例 #17
0
ファイル: frames.py プロジェクト: bmwasaru/Openframe-Server
 def get(self, owner):
     connected = self.get_argument('connected', None)
     resp = Frames.get_by_owner(owner, connected)
     _unify_ids(resp)
     self.write(dumps(resp))
コード例 #18
0
ファイル: frames.py プロジェクト: bmwasaru/Openframe-Server
 def delete(self, frame_id):
     res = Frames.delete_by_id(frame_id)
     self.write(dumps(res.acknowledged))