-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: 适配 ContiNew Starter WebSocket 模块(消息模块)
- Loading branch information
Showing
14 changed files
with
74 additions
and
653 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
...mon/src/main/java/top/continew/admin/common/config/websocket/CurrentUserProviderImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* | ||
* Copyright (c) 2022-present Charles7c Authors. All Rights Reserved. | ||
* | ||
* 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. | ||
*/ | ||
|
||
package top.continew.admin.common.config.websocket; | ||
|
||
import cn.hutool.core.convert.Convert; | ||
import jakarta.servlet.http.HttpServletRequest; | ||
import org.springframework.http.server.ServletServerHttpRequest; | ||
import org.springframework.stereotype.Component; | ||
import top.continew.admin.common.model.dto.LoginUser; | ||
import top.continew.admin.common.util.helper.LoginHelper; | ||
import top.continew.starter.messaging.websocket.core.CurrentUserProvider; | ||
import top.continew.starter.messaging.websocket.model.CurrentUser; | ||
|
||
/** | ||
* 当前登录用户 Provider | ||
* | ||
* @author Charles7c | ||
* @since 2024/6/4 22:13 | ||
*/ | ||
@Component | ||
public class CurrentUserProviderImpl implements CurrentUserProvider { | ||
|
||
@Override | ||
public CurrentUser getCurrentUser(ServletServerHttpRequest request) { | ||
HttpServletRequest servletRequest = request.getServletRequest(); | ||
String token = servletRequest.getParameter("token"); | ||
LoginUser loginUser = LoginHelper.getLoginUser(token); | ||
CurrentUser currentUser = new CurrentUser(); | ||
currentUser.setUserId(Convert.toStr(loginUser.getId())); | ||
return currentUser; | ||
} | ||
} |
58 changes: 0 additions & 58 deletions
58
...dmin-common/src/main/java/top/continew/admin/common/config/websocket/WebSocketConfig.java
This file was deleted.
Oops, something went wrong.
119 changes: 0 additions & 119 deletions
119
...common/src/main/java/top/continew/admin/common/config/websocket/WebsocketInterceptor.java
This file was deleted.
Oops, something went wrong.
113 changes: 0 additions & 113 deletions
113
...inew-admin-common/src/main/java/top/continew/admin/common/handler/MyWebSocketHandler.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.