Skip to content

Go Chat is simplified web socket chat server with client

Notifications You must be signed in to change notification settings

matishsiao/gochat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gochat

GoChat is simplified web socket chat server with client.

Version: 0.0.1

Features

Public channel chat

Administrator support

Private channel chat

Support Command

  1. /? or /help // You can find help

  2. /list // Get all online user list

  3. /kick "username" // kick user(Administrator only)

  4. /join "channel name" // join channel

  5. /leave "channel name" // leave channel

  6. /change "channel name" // change used channel

  7. /ver // get goChat version

  8. /who "username" //check user status

  9. @"username" "message"//send direct message to user

Screenshot

Chat box

Chat Box

Send Message

Send Message

Minimize chat box

Chat Box Minimize

Send chinese words to chat box

Chat Box for Chinese

Example

Normal User

<html>
  <link href="static/css/chat.css" rel="stylesheet">
  <body>
    <div id="message_box"></div>
  </body>
  <script src="static/js/chat.js"></script>
  <script src="static/js/util.js"></script>
  <script>
    var chat = new Chat("message_box","username");
    chat.Connect("ws://127.0.0.1:8080/socket");
  </script>
</html>

Administrator

<html>
  <link href="static/css/chat.css" rel="stylesheet">
  <body>
    <div id="message_box"></div>
  </body>
  <script src="static/js/chat.js"></script>
  <script src="static/js/util.js"></script>
  <script>
    var chat = new Chat("message_box","username","authtoken");
    chat.Connect("ws://127.0.0.1:8080/socket");
  </script>
</html>

Build

go get https://github.com/matishsiao/gochat/
cd $GOPATH/github.com/matishsiao/gochat/
go build

Run

./gochat

Browser

Normal User

```
  http://127.0.0.1:8080/
```

Administrator

```
  http://127.0.0.1:8080/admin.html
```

Configuration

{
  "debug":false,
  "mode":"chat", // gochat mode: chat(public chat), TODO:service(for customer service)
  "authtoken":"authtoken", // Administrator authorization token
  "http":"127.0.0.1:8080", // http listen host with port
  "https":"127.0.0.1:4443",// https listen host with port
  "ssl":{ //https ssl key and crt file settting
    "key":"ssl/test.key",
    "crt":"ssl/test.crt"
  },
  "timeout":120,// no used. todo
  "connection_limit":100//no used. todo
}

About

Go Chat is simplified web socket chat server with client

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published