Merge branch 'master' of Software_Engineering_I/greenvironment-frontend into max_dev
commit
1baa7b6230
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,12 @@
|
|||||||
|
import {IUser} from './IUser';
|
||||||
|
|
||||||
|
export interface IChat {
|
||||||
|
|
||||||
|
id: number;
|
||||||
|
|
||||||
|
namespace: string;
|
||||||
|
|
||||||
|
members: IUser[];
|
||||||
|
|
||||||
|
messages: any[];
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
import {IGraphqlError} from './IGraphqlError';
|
||||||
|
|
||||||
|
export interface IErrorResponse {
|
||||||
|
error: {
|
||||||
|
errors: IGraphqlError[];
|
||||||
|
data: any;
|
||||||
|
};
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
export interface IGraphqlError {
|
||||||
|
|
||||||
|
message: string;
|
||||||
|
|
||||||
|
path: string[];
|
||||||
|
|
||||||
|
location: {line: number; column: number}[];
|
||||||
|
}
|
@ -0,0 +1,20 @@
|
|||||||
|
import {IUser} from './IUser';
|
||||||
|
|
||||||
|
export interface IGroup {
|
||||||
|
|
||||||
|
id: number;
|
||||||
|
|
||||||
|
name: string;
|
||||||
|
|
||||||
|
creator: IUser;
|
||||||
|
|
||||||
|
admins: IUser[];
|
||||||
|
|
||||||
|
members: IUser[];
|
||||||
|
|
||||||
|
chat: any;
|
||||||
|
|
||||||
|
events: any;
|
||||||
|
|
||||||
|
joined: boolean;
|
||||||
|
}
|
@ -0,0 +1,18 @@
|
|||||||
|
import {IUser} from './IUser';
|
||||||
|
|
||||||
|
export enum RequestType {
|
||||||
|
FRIENDREQUEST = 'FRIENDREQUEST',
|
||||||
|
GROUPINVITE = 'GROUPINVITE',
|
||||||
|
EVENTINVITE = 'EVENTINVITE',
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IRequest {
|
||||||
|
|
||||||
|
id: number;
|
||||||
|
|
||||||
|
sender: IUser;
|
||||||
|
|
||||||
|
receiver: IUser;
|
||||||
|
|
||||||
|
type: RequestType;
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
import {IUser} from './IUser';
|
||||||
|
import {IGroup} from './IGroup';
|
||||||
|
|
||||||
|
export interface ISearchResult {
|
||||||
|
users: IUser[];
|
||||||
|
|
||||||
|
groups: IGroup[];
|
||||||
|
|
||||||
|
posts: any[];
|
||||||
|
|
||||||
|
events: any[];
|
||||||
|
}
|
@ -0,0 +1,3 @@
|
|||||||
|
export interface ISettings {
|
||||||
|
darkmode?: boolean;
|
||||||
|
}
|
@ -0,0 +1,49 @@
|
|||||||
|
import {IGroup} from './IGroup';
|
||||||
|
import {ISettings} from './ISettings';
|
||||||
|
import {IChat} from './IChat';
|
||||||
|
import {IRequest} from './IRequest';
|
||||||
|
|
||||||
|
export interface IUser {
|
||||||
|
|
||||||
|
id: number;
|
||||||
|
|
||||||
|
name: string;
|
||||||
|
|
||||||
|
handle: string;
|
||||||
|
|
||||||
|
email?: string;
|
||||||
|
|
||||||
|
profilePicture?: string;
|
||||||
|
|
||||||
|
settings?: string;
|
||||||
|
|
||||||
|
level: number;
|
||||||
|
|
||||||
|
points: number;
|
||||||
|
|
||||||
|
numberOfPosts: number;
|
||||||
|
|
||||||
|
postCount: number;
|
||||||
|
|
||||||
|
posts: any[];
|
||||||
|
|
||||||
|
chats: IChat[];
|
||||||
|
|
||||||
|
receivedRequests: IRequest[];
|
||||||
|
|
||||||
|
sentRequests: IRequest[];
|
||||||
|
|
||||||
|
joinedAt: string;
|
||||||
|
|
||||||
|
friendCount: number;
|
||||||
|
|
||||||
|
friends: IUser[];
|
||||||
|
|
||||||
|
groupCount: number;
|
||||||
|
|
||||||
|
groups: IGroup[];
|
||||||
|
|
||||||
|
eventCount: number;
|
||||||
|
|
||||||
|
events: any[];
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
import {Injectable} from '@angular/core';
|
||||||
|
import {HttpHeaders} from '@angular/common/http';
|
||||||
|
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root'
|
||||||
|
})
|
||||||
|
export abstract class BaseService {
|
||||||
|
protected headers: HttpHeaders;
|
||||||
|
|
||||||
|
protected constructor() {
|
||||||
|
this.headers = new HttpHeaders();
|
||||||
|
this.headers.set('Content-Type', 'application/json');
|
||||||
|
}
|
||||||
|
}
|
@ -1,105 +1,79 @@
|
|||||||
import {Injectable} from '@angular/core';
|
import {Injectable} from '@angular/core';
|
||||||
import {Headers, Http, Request} from '@angular/http';
|
import {HttpClient} from '@angular/common/http';
|
||||||
import {Login} from '../../models/login';
|
import {Login} from '../../models/login';
|
||||||
import {User} from 'src/app/models/user';
|
import {User} from 'src/app/models/user';
|
||||||
import {DatasharingService} from '../datasharing.service';
|
import {DatasharingService} from '../datasharing.service';
|
||||||
import {Router} from '@angular/router';
|
|
||||||
import {environment} from 'src/environments/environment';
|
import {environment} from 'src/environments/environment';
|
||||||
import { FriendRequest } from 'src/app/models/friendRequest';
|
import {IUser} from '../../models/interfaces/IUser';
|
||||||
import { FriendInfo } from 'src/app/models/friendinfo';
|
import {BaseService} from '../base.service';
|
||||||
import { GroupInfo } from 'src/app/models/groupinfo';
|
import {tap} from 'rxjs/operators';
|
||||||
|
|
||||||
@Injectable({
|
interface ILoginRequestResult {
|
||||||
providedIn: 'root'
|
data: {
|
||||||
})
|
login: IUser;
|
||||||
export class LoginService {
|
};
|
||||||
|
}
|
||||||
constructor(private http: Http, private data: DatasharingService, private router: Router) {
|
|
||||||
}
|
|
||||||
|
|
||||||
public login(login: Login, errorCb: any) {
|
|
||||||
|
|
||||||
const headers = new Headers();
|
|
||||||
headers.set('Content-Type', 'application/json');
|
|
||||||
|
|
||||||
return this.http.post(environment.graphQLUrl, this.buildJson(login))
|
const graphqlQuery = `mutation($email: String!, $pwHash: String!) {
|
||||||
.subscribe(response => {
|
login(email: $email, passwordHash: $pwHash) {
|
||||||
this.loginSuccess();
|
id,
|
||||||
this.updateUserInfo(response.json());
|
name,
|
||||||
}, errorCb
|
email,
|
||||||
);
|
handle,
|
||||||
|
points,
|
||||||
|
level,
|
||||||
|
receivedRequests{id, sender{name, handle, id}},
|
||||||
|
sentRequests{receiver{id}},
|
||||||
|
friends {
|
||||||
|
id,
|
||||||
|
name,
|
||||||
|
level
|
||||||
|
},
|
||||||
|
groups {
|
||||||
|
id,
|
||||||
|
name
|
||||||
|
},
|
||||||
|
chats{
|
||||||
|
id
|
||||||
|
},
|
||||||
|
settings
|
||||||
}
|
}
|
||||||
|
}`;
|
||||||
|
|
||||||
public loginSuccess() {
|
@Injectable({
|
||||||
this.router.navigateByUrl('');
|
providedIn: 'root'
|
||||||
}
|
})
|
||||||
|
export class LoginService extends BaseService {
|
||||||
|
|
||||||
public updateUserInfo(response: any) {
|
constructor(private http: HttpClient, private datasharingService: DatasharingService) {
|
||||||
const user: User = new User();
|
super();
|
||||||
let friendRequest: FriendRequest = new FriendRequest();
|
|
||||||
user.loggedIn = true;
|
|
||||||
user.userID = response.data.login.id;
|
|
||||||
user.username = response.data.login.name;
|
|
||||||
user.handle = response.data.login.handle;
|
|
||||||
user.email = response.data.login.email;
|
|
||||||
user.points = response.data.login.points;
|
|
||||||
user.level = response.data.login.level;
|
|
||||||
for (const friend of response.data.login.friends) {
|
|
||||||
user.friends.push(new FriendInfo(friend.id, friend.name, friend.level));
|
|
||||||
}
|
|
||||||
for (const group of response.data.login.groups) {
|
|
||||||
user.groups.push(new GroupInfo(group.id, group.name));
|
|
||||||
}
|
|
||||||
user.chatIDs = response.data.login.chats;
|
|
||||||
for (const request of response.data.login.sentRequests) {
|
|
||||||
user.sentRequestUserIDs.push(request.receiver.id);
|
|
||||||
}
|
|
||||||
for (const request of response.data.login.receivedRequests) {
|
|
||||||
friendRequest = new FriendRequest();
|
|
||||||
friendRequest.id = request.id;
|
|
||||||
friendRequest.senderUserID = request.sender.id;
|
|
||||||
friendRequest.senderUsername = request.sender.name;
|
|
||||||
friendRequest.senderHandle = request.sender.handle;
|
|
||||||
user.receivedRequests.push(friendRequest);
|
|
||||||
}
|
|
||||||
if (JSON.parse(response.data.login.settings).darkmode === 'true') {
|
|
||||||
user.darkmode = true;
|
|
||||||
}
|
|
||||||
this.data.changeUserInfo(user);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public buildJson(login: Login): any {
|
/**
|
||||||
const body = {
|
* Builds the body for the login request
|
||||||
query: `mutation($email: String!, $pwHash: String!) {
|
* @param login
|
||||||
login(email: $email, passwordHash: $pwHash) {
|
*/
|
||||||
id,
|
private static buildRequestBody(login: Login): any {
|
||||||
name,
|
return {
|
||||||
email,
|
query: graphqlQuery,
|
||||||
handle,
|
variables: {
|
||||||
points,
|
|
||||||
level,
|
|
||||||
receivedRequests{id, sender{name, handle, id}},
|
|
||||||
sentRequests{receiver{id}},
|
|
||||||
friends {
|
|
||||||
id,
|
|
||||||
name,
|
|
||||||
level
|
|
||||||
},
|
|
||||||
groups {
|
|
||||||
id,
|
|
||||||
name
|
|
||||||
},
|
|
||||||
chats{
|
|
||||||
id
|
|
||||||
},
|
|
||||||
settings
|
|
||||||
}
|
|
||||||
}`
|
|
||||||
, variables: {
|
|
||||||
email: login.email,
|
email: login.email,
|
||||||
pwHash: login.passwordHash,
|
pwHash: login.passwordHash,
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
return body;
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Performs a login request and returns the data of the logged in user.
|
||||||
|
* @param login
|
||||||
|
*/
|
||||||
|
public login(login: Login) {
|
||||||
|
const body = LoginService.buildRequestBody(login);
|
||||||
|
return this.http.post<ILoginRequestResult>(environment.graphQLUrl, body, {headers: this.headers})
|
||||||
|
.pipe(tap(response => {
|
||||||
|
const user = new User();
|
||||||
|
user.assignFromResponse(response.data.login);
|
||||||
|
this.datasharingService.changeUserInfo(user);
|
||||||
|
}));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,71 +1,107 @@
|
|||||||
import {Injectable} from '@angular/core';
|
import {Injectable} from '@angular/core';
|
||||||
import {Headers, Http} from '@angular/http';
|
import {HttpClient} from '@angular/common/http';
|
||||||
import {DatasharingService} from '../datasharing.service';
|
import {DatasharingService} from '../datasharing.service';
|
||||||
import {Router} from '@angular/router';
|
import {Router} from '@angular/router';
|
||||||
import {environment} from 'src/environments/environment';
|
import {User} from 'src/app/models/user';
|
||||||
import { User } from 'src/app/models/user';
|
import {GroupInfo} from 'src/app/models/groupinfo';
|
||||||
import { GroupInfo } from 'src/app/models/groupinfo';
|
import {Observable} from 'rxjs';
|
||||||
|
import {ISearchResult} from '../../models/interfaces/ISearchResult';
|
||||||
|
import {environment} from '../../../environments/environment';
|
||||||
|
import {BaseService} from '../base.service';
|
||||||
|
import {tap} from 'rxjs/operators';
|
||||||
|
|
||||||
|
interface ISearchRequestResult {
|
||||||
|
data: {
|
||||||
|
search: ISearchResult;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const graphqlQuery = `query($query: String!, $first: Int, $offset: Int) {
|
||||||
|
search(query:$query, first: $first, offset: $offset) {
|
||||||
|
users{
|
||||||
|
profilePicture,
|
||||||
|
name,
|
||||||
|
id,
|
||||||
|
handle,
|
||||||
|
points,
|
||||||
|
level,
|
||||||
|
friends {
|
||||||
|
id
|
||||||
|
}
|
||||||
|
}
|
||||||
|
groups{
|
||||||
|
id
|
||||||
|
name
|
||||||
|
creator{id name handle}
|
||||||
|
members{id name handle}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}`;
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root'
|
providedIn: 'root'
|
||||||
})
|
})
|
||||||
export class SearchService {
|
export class SearchService extends BaseService {
|
||||||
|
constructor(private http: HttpClient, private data: DatasharingService, private router: Router) {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
users: Array<User>;
|
/**
|
||||||
constructor(private http: Http, private data: DatasharingService, private router: Router) {
|
* Builds the body for the request
|
||||||
|
* @param query - the search query
|
||||||
|
* @param first - the limit of elements to fetch
|
||||||
|
* @param offset - offset
|
||||||
|
*/
|
||||||
|
private static buildRequestBody(query: String, first: number = 20, offset: number = 0): any {
|
||||||
|
return {
|
||||||
|
query: graphqlQuery,
|
||||||
|
variables: {
|
||||||
|
query,
|
||||||
|
first,
|
||||||
|
offset
|
||||||
|
}
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
public renderUsers(pResponse: any): Array<User> {
|
/**
|
||||||
|
* Maps the users in the response to the user class
|
||||||
|
* @param response
|
||||||
|
*/
|
||||||
|
public getUsersForResponse(response: ISearchRequestResult): User[] {
|
||||||
const users = new Array<User>();
|
const users = new Array<User>();
|
||||||
for (const user of pResponse.data.search.users) {
|
for (const foundUser of response.data.search.users) {
|
||||||
const pUser = new User();
|
const user = new User();
|
||||||
pUser.profilePicture = user.profilePicture;
|
user.profilePicture = foundUser.profilePicture;
|
||||||
pUser.username = user.name;
|
user.username = foundUser.name;
|
||||||
pUser.userID = user.id;
|
user.userID = foundUser.id;
|
||||||
pUser.handle = user.handle;
|
user.handle = foundUser.handle;
|
||||||
pUser.points = user.points;
|
user.points = foundUser.points;
|
||||||
pUser.level = user.level;
|
user.level = foundUser.level;
|
||||||
pUser.friends = user.friends;
|
// @ts-ignore
|
||||||
users.push(pUser);
|
user.friends = foundUser.friends;
|
||||||
|
users.push(user);
|
||||||
}
|
}
|
||||||
return users;
|
return users;
|
||||||
}
|
}
|
||||||
|
|
||||||
public renderGroups(pResponse: any): Array<GroupInfo> {
|
/**
|
||||||
|
* Maps the groups in the response to the group class
|
||||||
|
* @param response
|
||||||
|
*/
|
||||||
|
public getGroupsForResponse(response: ISearchRequestResult): Array<GroupInfo> {
|
||||||
const groups = new Array<GroupInfo>();
|
const groups = new Array<GroupInfo>();
|
||||||
for (const group of pResponse.data.search.groups) {
|
for (const group of response.data.search.groups) {
|
||||||
groups.push(new GroupInfo(group.id, group.name));
|
groups.push(new GroupInfo(group.id, group.name));
|
||||||
}
|
}
|
||||||
return groups;
|
return groups;
|
||||||
}
|
}
|
||||||
|
|
||||||
public buildJsonUser(name_: String): any {
|
/**
|
||||||
const body = {
|
* Searches for users, groups, events and posts with a specified query.
|
||||||
query: `query($name: String!) {
|
* @param query
|
||||||
search(query:$name, first: 100, offset: 0) {
|
*/
|
||||||
users{
|
public search(query: string): Observable<ISearchRequestResult> {
|
||||||
profilePicture,
|
const body = SearchService.buildRequestBody(query);
|
||||||
name,
|
return this.http.post<ISearchRequestResult>(environment.graphQLUrl, body, {headers: this.headers});
|
||||||
id,
|
|
||||||
handle,
|
|
||||||
points,
|
|
||||||
level,
|
|
||||||
friends {
|
|
||||||
id
|
|
||||||
}
|
|
||||||
}
|
|
||||||
groups{
|
|
||||||
id
|
|
||||||
name
|
|
||||||
creator{id name handle}
|
|
||||||
members{id name handle}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}`
|
|
||||||
, variables: {
|
|
||||||
name: name_
|
|
||||||
}
|
|
||||||
};
|
|
||||||
return body;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,37 +1,41 @@
|
|||||||
import {Injectable} from '@angular/core';
|
import {Injectable} from '@angular/core';
|
||||||
import {Headers, Http} from '@angular/http';
|
|
||||||
import {DatasharingService} from '../datasharing.service';
|
|
||||||
import {Router} from '@angular/router';
|
|
||||||
import {environment} from 'src/environments/environment';
|
import {environment} from 'src/environments/environment';
|
||||||
import { User } from 'src/app/models/user';
|
import {HttpClient} from '@angular/common/http';
|
||||||
|
import {BaseService} from '../base.service';
|
||||||
|
|
||||||
|
const graphqlCreateGroupQuery = `mutation($name: String!) {
|
||||||
|
createGroup(name: $name) {
|
||||||
|
id
|
||||||
|
}
|
||||||
|
}`;
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root'
|
providedIn: 'root'
|
||||||
})
|
})
|
||||||
export class SocialService {
|
export class SocialService extends BaseService {
|
||||||
|
|
||||||
users: Array<User>;
|
|
||||||
constructor(private http: Http, private data: DatasharingService, private router: Router) {
|
|
||||||
}
|
|
||||||
|
|
||||||
createGroup(name: string) {
|
constructor(private http: HttpClient) {
|
||||||
const headers = new Headers();
|
super();
|
||||||
headers.set('Content-Type', 'application/json');
|
|
||||||
this.http.post(environment.graphQLUrl, this.buildJsonGroup(name)).subscribe(response => {
|
|
||||||
console.log(response.text()); });
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public buildJsonGroup(name_: String): any {
|
/**
|
||||||
const body = {
|
* Builds the body for a group creation request
|
||||||
query: `mutation($name: String!) {
|
* @param name
|
||||||
createGroup(name: $name) {
|
*/
|
||||||
id
|
private static buildGroupCreateBody(name: String): any {
|
||||||
}
|
return {
|
||||||
}`
|
query: graphqlCreateGroupQuery, variables: {
|
||||||
, variables: {
|
name
|
||||||
name: name_
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
return body;
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a group
|
||||||
|
* @param name
|
||||||
|
*/
|
||||||
|
createGroup(name: string) {
|
||||||
|
const body = SocialService.buildGroupCreateBody(name);
|
||||||
|
return this.http.post(environment.graphQLUrl, body, {headers: this.headers});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue