Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skyf0l/myteams
A collaborative communication application like the well known Microsoft Teams
https://github.com/skyf0l/myteams
client-server epitech-project network network-programming socket udp-protocol udp-socket
Last synced: 17 days ago
JSON representation
A collaborative communication application like the well known Microsoft Teams
- Host: GitHub
- URL: https://github.com/skyf0l/myteams
- Owner: skyf0l
- Created: 2021-06-14T10:39:12.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-06-14T10:46:38.000Z (over 3 years ago)
- Last Synced: 2024-11-28T00:42:58.689Z (3 months ago)
- Topics: client-server, epitech-project, network, network-programming, socket, udp-protocol, udp-socket
- Language: C
- Homepage:
- Size: 151 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MyTeams
#### A collaborative communication application like the well known Microsoft Teams
#### 100% success in Epitech's automated tests
# Features
A collaborative communication application is a service able to manage severall communication teams, where discussion are organised like following:
- threads (initial post and additional comments) in a specific channel
- discussion (personnal messages)Here are the features implemented :
- Creating/Joining/Leaving a team
- Creating a user
- Creating a channel in a team
- Creating a thread in a channel
- Creating a comment in a thread
- Saving & restoring users, teams, channels, threads & associated comments
- Personnal discussion (from a user to an other)
- Saving & restoring personnal discussion# Build
Build all
```bash
$ make all
```Or only build server / client
```bash
$ make server
$ make cli
```# Run
Server:
```
$ ./run.sh ./myteams_server 2222
```Client:
```
$ ./run.sh ./myteams_cli localhost 2222
```# JSON database format:
```json
{
"users": {
uuid: {
"timestamp": time,
"name": name,
"teams_sub": [team_uuid]
}
},
"private_messages": [
{
"users": [uuid1, uuid2],
"messages": {
uuid: {
"timestamp": time,
"from": uuid_user,
"message": message
}
}
}
],
"teams": {
uuid: {
"timestamp": time,
"name": name,
"description": desc,
"creator": uuid_user,
"users_sub": [],
"channels": {
uuid: {
"timestamp": time,
"name": name,
"description": desc,
"creator": uuid_user,
"threads": {
uuid: {
"timestamp": time,
"name": name,
"description": desc,
"creator": uuid_user,
"messages": {
uuid: {
"timestamp": time,
"message":message,
"from":uuid_user
}
}
}
}
}
}
}
}
}
```