summary refs log tree commit diff
path: root/syweb/webclient/home/home-controller.js
blob: 3a48e64ab4ad8ba92d0be684f05d5b5b6565bf9b (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
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
/*
Copyright 2014 OpenMarket Ltd

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.
*/

'use strict';

angular.module('HomeController', ['matrixService', 'eventHandlerService', 'RecentsController'])
.controller('HomeController', ['$scope', '$location', 'matrixService', 'eventHandlerService', 
                               function($scope, $location, matrixService, eventHandlerService) {

    $scope.config = matrixService.config();
    $scope.public_rooms = [];
    $scope.newRoomId = "";
    $scope.feedback = "";
    
    $scope.newRoom = {
        room_id: "",
        private: false
    };
    
    $scope.goToRoom = {
        room_id: ""
    };

    $scope.joinAlias = {
        room_alias: ""
    };
    
    $scope.profile = {
        displayName: "",
        avatarUrl: ""
    };
    
    $scope.newChat = {
        user: ""
    };

    var refresh = function() {
        
        matrixService.publicRooms().then(
            function(response) {
                $scope.public_rooms = response.data.chunk;
                for (var i = 0; i < $scope.public_rooms.length; i++) {
                    var room = $scope.public_rooms[i];

                    // Add room_alias & room_display_name members
                    angular.extend(room, matrixService.getRoomAliasAndDisplayName(room));
                    
                }
            }
        );
    };
    
    $scope.createNewRoom = function(room_alias, isPrivate) {
        
        var visibility = "public";
        if (isPrivate) {
            visibility = "private";
        }
        
        matrixService.create(room_alias, visibility).then(
            function(response) { 
                // This room has been created. Refresh the rooms list
                console.log("Created room " + response.data.room_alias + " with id: "+
                response.data.room_id);
                matrixService.createRoomIdToAliasMapping(
                    response.data.room_id, response.data.room_alias);
            },
            function(error) {
                $scope.feedback = "Failure: " + JSON.stringify(error.data);
            });
    };
    
    // Go to a room
    $scope.goToRoom = function(room_id) {
        matrixService.join(room_id).then(
            function(response) {
                var final_room_id = room_id;
                if (response.data.hasOwnProperty("room_id")) {
                    final_room_id = response.data.room_id;
                }

                // TODO: factor out the common housekeeping whenever we try to join a room or alias
                matrixService.roomState(final_room_id).then(
                    function(response) {
                        eventHandlerService.handleEvents(response.data, false, true);
                    },
                    function(error) {
                        $scope.feedback = "Failed to get room state for: " + final_room_id;
                    }
                );                                        

                $location.url("room/" + final_room_id);
            },
            function(error) {
                $scope.feedback = "Can't join room: " + JSON.stringify(error.data);
            }
        );
    };

    $scope.joinAlias = function(room_alias) {
        matrixService.joinAlias(room_alias).then(
            function(response) {
                // TODO: factor out the common housekeeping whenever we try to join a room or alias
                matrixService.roomState(response.room_id).then(
                    function(response) {
                        eventHandlerService.handleEvents(response.data, false, true);
                    },
                    function(error) {
                        $scope.feedback = "Failed to get room state for: " + response.room_id;
                    }
                );                                        
                // Go to this room
                $location.url("room/" + room_alias);
            },
            function(error) {
                $scope.feedback = "Can't join room: " + JSON.stringify(error.data);
            }
        );
    };
    
    // FIXME: factor this out between user-controller and home-controller etc.
    $scope.messageUser = function() {    
        
        // FIXME: create a new room every time, for now
        
        matrixService.create(null, 'private').then(
            function(response) { 
                // This room has been created. Refresh the rooms list
                var room_id = response.data.room_id;
                console.log("Created room with id: "+ room_id);
                
                matrixService.invite(room_id, $scope.newChat.user).then(
                    function() {
                        $scope.feedback = "Invite sent successfully";
                        $scope.$parent.goToPage("/room/" + room_id);
                    },
                    function(reason) {
                        $scope.feedback = "Failure: " + JSON.stringify(reason);
                    });
            },
            function(error) {
                $scope.feedback = "Failure: " + JSON.stringify(error.data);
            });                
    };
    
 
    $scope.onInit = function() {
        // Load profile data
        // Display name
        matrixService.getDisplayName($scope.config.user_id).then(
            function(response) {
                $scope.profile.displayName = response.data.displayname;
                var config = matrixService.config();
                config.display_name = response.data.displayname;
                matrixService.setConfig(config);
                matrixService.saveConfig();
            },
            function(error) {
                $scope.feedback = "Can't load display name";
            } 
        );
        // Avatar
        matrixService.getProfilePictureUrl($scope.config.user_id).then(
            function(response) {
                $scope.profile.avatarUrl = response.data.avatar_url;
            },
            function(error) {
                $scope.feedback = "Can't load avatar URL";
            } 
        );

        // Listen to room creation event in order to update the public rooms list
        $scope.$on(eventHandlerService.ROOM_CREATE_EVENT, function(ngEvent, event, isLive) {
            if (isLive) {
                // As we do not know if this room is public, do a full list refresh
                refresh();
            }
        });

        refresh();
    };

    // Clean data when user logs out
    $scope.$on(eventHandlerService.RESET_EVENT, function() {
        $scope.public_rooms = [];
    });
}]);