Skip to content

Commit

Permalink
Updated websocket
Browse files Browse the repository at this point in the history
  • Loading branch information
dukefirehawk committed Jun 3, 2024
1 parent 9ba0092 commit e802de1
Show file tree
Hide file tree
Showing 17 changed files with 51 additions and 24 deletions.
5 changes: 5 additions & 0 deletions packages/auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## 8.2.0

* Require Dart >= 3.3
* Updated `lints` to 4.0.0

## 8.1.1

* Updated repository link
Expand Down
2 changes: 1 addition & 1 deletion packages/auth/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: angel3_auth
description: A complete authentication plugin for Angel3. Includes support for stateless JWT tokens, Basic Auth, and more.
version: 8.1.1
version: 8.2.0
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/master/packages/auth
environment:
Expand Down
5 changes: 5 additions & 0 deletions packages/auth_oauth2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## 8.2.0

* Require Dart >= 3.3
* Updated `lints` to 4.0.0

## 8.1.1

* Updated repository link
Expand Down
2 changes: 1 addition & 1 deletion packages/auth_oauth2/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: angel3_auth_oauth2
version: 8.1.1
version: 8.2.0
description: Angel3 library for authenticating users with external identity providers via OAuth2.
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/master/packages/auth_oauth2
Expand Down
6 changes: 3 additions & 3 deletions packages/auth_twitter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

## 8.0.0

* Require Dart >= 3.0
* Require Dart >= 3.3
* Updated `oauth1` to `belatuk_oauth1`
* Updated `lints` to 3.0.0
* Fixed linter warnings
* Updated `lints` to 4.0.0
* Updated repository link
* Fixed linter warnings

## 7.0.0

Expand Down
1 change: 1 addition & 0 deletions packages/auth_twitter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
[![Gitter](https://img.shields.io/gitter/room/angel_dart/discussion)](https://gitter.im/angel_dart/discussion)
[![License](https://img.shields.io/github/license/dart-backend/angel)](https://github.com/dart-backend/angel/tree/master/packages/auth_twitter/LICENSE)

**Not ready for release**
Angel3 authentication strategy using Twitter OAuth 1.0a.

See the [example](example/example.dart);
4 changes: 2 additions & 2 deletions packages/auth_twitter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: "angel3_auth_twitter"
description: Angel3 authentication strategy for Twitter login. Auto-signs requests.
version: 8.0.1
version: 8.0.0
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/master/packages/auth_twitter
publish_to: none
environment:
sdk: ">=3.0.0 <4.0.0"
sdk: ">=3.3.0 <4.0.0"
dependencies:
angel3_auth: ^8.0.0
angel3_framework: ^8.0.0
Expand Down
5 changes: 5 additions & 0 deletions packages/cache/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## 8.2.0

* Require Dart >= 3.3
* Updated `lints` to 4.0.0

## 8.1.1

* Updated repository link
Expand Down
4 changes: 2 additions & 2 deletions packages/cache/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: angel3_cache
version: 8.1.1
version: 8.2.0
description: A service that provides HTTP caching to the response data for Angel3
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/master/packages/cache
environment:
sdk: '>=3.3.0 <4.0.0'
sdk: '>=3.4.0 <4.0.0'
dependencies:
angel3_framework: ^8.0.0
collection: ^1.17.0
Expand Down
5 changes: 5 additions & 0 deletions packages/framework/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## 8.4.0

* Require Dart >= 3.3
* Updated `lints` to 4.0.0

## 8.3.2

* Updated README
Expand Down
2 changes: 1 addition & 1 deletion packages/framework/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: angel3_framework
version: 8.3.2
version: 8.4.0
description: A high-powered HTTP server extensible framework with dependency injection, routing and much more.
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/master/packages/framework
Expand Down
3 changes: 2 additions & 1 deletion packages/mongo/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
## 8.2.0

* Require Dart >= 3.3
* Upgraded `mongo_dart` to 0.10.2
* Updated `mongo_dart` to 0.10.2
* Updated `lints` to 3.0.0
* Fixed deprecated methods

## 8.1.1
Expand Down
6 changes: 6 additions & 0 deletions packages/websocket/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 8.2.0

* Require Dart >= 3.3
* Updated `lints` to 4.0.0
* Updated `web_socket_channel` to 3.0.0

## 8.1.1

* Updated repository link
Expand Down
2 changes: 1 addition & 1 deletion packages/websocket/lib/base_websocket_client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ abstract class BaseWebSocketClient extends BaseAngelClient {
Future close() async {
on._close();
scheduleMicrotask(() async {
await _socket!.sink.close(status.goingAway);
await _socket!.sink.close(status.normalClosure);
await _onData.close();
await _onAllEvents.close();
await _onAuthenticated.close();
Expand Down
4 changes: 2 additions & 2 deletions packages/websocket/lib/server.dart
Original file line number Diff line number Diff line change
Expand Up @@ -508,8 +508,8 @@ class AngelWebSocket {
if (protocol != null) sink.add('Sec-WebSocket-Protocol: $protocol\r\n');
sink.add('\r\n');

var ws = WebSocketChannel(ctrl.foreign);
var socket = WebSocketContext(ws, req, res);
//var ws = IOWebSocketChannel.connect(ctrl.foreign);
var socket = WebSocketContext(ctrl.foreign, req, res);
scheduleMicrotask(() => handleClient(socket));
return false;
}
Expand Down
6 changes: 3 additions & 3 deletions packages/websocket/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: angel3_websocket
version: 8.1.1
version: 8.2.0
description: This library provides WebSockets support for Angel3 framework.
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/master/packages/websocket
Expand All @@ -14,14 +14,14 @@ dependencies:
http: ^1.0.0
meta: ^1.8.0
stream_channel: ^2.1.0
web_socket_channel: '>=2.1.0 <2.4.1'
web_socket_channel: ^3.0.0
collection: ^1.17.0
logging: ^1.1.0
dev_dependencies:
angel3_container: ^8.0.0
angel3_model: ^8.0.0
quiver: ^3.2.0
test: ^1.24.0
test: ^1.25.0
lints: ^4.0.0
file: ^7.0.0
# dependency_overrides:
Expand Down
13 changes: 6 additions & 7 deletions packages/websocket/test/controller/io_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import 'common.dart';
void main() {
srv.Angel app;
late srv.AngelHttp http;
ws.WebSockets? client;
late ws.WebSockets client;
srv.AngelWebSocket websockets;
HttpServer? server;
String? url;
Expand All @@ -34,12 +34,12 @@ void main() {
url = 'ws://${server!.address.address}:${server!.port}/ws';

client = ws.WebSockets(url);
await client!.connect(timeout: Duration(seconds: 3));
await client.connect(timeout: Duration(seconds: 3));

print('Connected');

client
?..onData.listen((data) {
..onData.listen((data) {
print('Received by client: $data');
})
..onError.listen((error) {
Expand All @@ -51,18 +51,17 @@ void main() {
});

tearDown(() async {
await client!.close();
await client.close();
await http.close();
//app = null;
client = null;
server = null;
url = null;
});

group('controller.io', () {
test('search', () async {
client!.sendAction(ws.WebSocketAction(eventName: 'search'));
var search = await client!.on['searched'].first;
client.sendAction(ws.WebSocketAction(eventName: 'search'));
var search = await client.on['searched'].first;
print('Searched: ${search.data}');
expect(Game.fromJson(search.data as Map), equals(johnVsBob));
});
Expand Down

0 comments on commit e802de1

Please sign in to comment.