审计记录

src/main/java/com/xxxcom/xxxproduct/XXXSrv.java 9.0 KB
胡敏 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
package com.xxxcom.xxxproduct;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.xxxcom.model.vo.Msg_Vo;
import com.xxxcom.util.JDBCUtil;

import io.vertx.core.AbstractVerticle;
import io.vertx.core.Future;
import io.vertx.core.Vertx;
import io.vertx.core.http.HttpServerResponse;
import io.vertx.core.json.JsonArray;
import io.vertx.core.json.JsonObject;
import io.vertx.ext.sql.SQLConnection;
import io.vertx.ext.web.Router;
import io.vertx.ext.web.RoutingContext;
import io.vertx.ext.web.handler.BodyHandler;
import io.vertx.ext.web.handler.StaticHandler;

public class XXXSrv extends AbstractVerticle {

	public XXXSrv() {
		vertx = Vertx.vertx();

	}
	JDBCUtil jdbc =new JDBCUtil();

	@Override
	public void start() throws Exception {
		/*
		 * EventBus eb = vertx.eventBus(); eb.consumer("abc", // 这个是微服务监听地址(功能号)
		 * r -> { // 处理函数 try {
		 * 
		 * JsonObject request = (JsonObject) r.body(); // 微服务之间通信采用JSON String
		 * param1 = request.getString("param1"); // 这里获取参数 String param2 =
		 * request.getString("param2");
		 * 
		 * r.reply(makeReply(0, "", "world")); } catch (Exception e) {
		 * r.reply(makeReply(-1, "未知错误", null)); }
		 * 
		 * });
		 */
		/*
		 * System.out.println("begin"); final JDBCClient client =
		 * JDBCClient.createShared(vertx, new JsonObject().put("url",
		 * "jdbc:postgresql://120.76.158.63:5432/iot") .put("driver_class",
		 * "org.postgresql.Driver") .put("max_pool_size", 10).put("username",
		 * "postgres") .put("password", "Nmamtf_098"));
		 * 
		 * client.getConnection(conn -> { if (conn.failed()) {
		 * System.out.println("1111");
		 * System.err.println(conn.cause().getMessage()); return; }
		 * System.out.println(12223); final SQLConnection connection =
		 * conn.result(); connection.execute(
		 * "create table test(id int primary key, name varchar(255))", res -> {
		 * if (res.failed()) { throw new RuntimeException(res.cause()); } //
		 * insert some test data connection.execute(
		 * "insert into test values(1, 'Hello')", insert -> { // query some data
		 * connection.query("select * from test", rs -> { for (JsonArray line :
		 * rs.result().getResults()) { System.out.println(line.encode()); }
		 * 
		 * // and close the connection connection.close(done -> { if
		 * (done.failed()) { throw new RuntimeException(done.cause()); } }); });
		 * }); }); });
		 */
	}

	@Override
	public void stop() throws Exception {

	}

	private JsonObject makeReply(int code, String msg, Object data) {
		if (data == null) {
			data = new JsonObject();
		}
		return new JsonObject().put("result", new JsonObject().put("code", code).put("msg", msg)).put("data", data);
	}

	public static void main(String[] args) {
		// Create an HTTP server which simply returns "Hello World!" to each
		// request.
		Vertx.vertx().createHttpServer().requestHandler(req -> req.response().end("Hello World!")).listen(9090);
	}

	@Override
	public void start(Future<Void> fut) {
  
		Router router = Router.router(vertx);
		 
		// 页面访问地址
		router.route("/my/*").handler(StaticHandler.create("my"));

		vertx.createHttpServer().requestHandler(router::accept).listen(
				// Retrieve the port from the configuration
				config().getInteger("http.port", 8080), result -> {
					if (result.succeeded()) {
						fut.complete();
					} else {
						fut.fail(result.cause());
					}
		});

		 
		// 获取列表
		//router.get("/api/getUsers").handler(this::getAll);
		
	    router.route("/api/user*").handler(BodyHandler.create());// 设置全局请求
	   // 获取列表
	 	 router.get("/api/user/list").handler(this::getAll);
		// 添加
		router.post("/api/user").handler(this::adduser);
		// 修改
		router.put("/api/user").handler(this::updateuser);
		// 删除
		router.delete("/api/user/:id").handler(this::deleteuser);
	}

	// 查询
	private void getAll(RoutingContext routingContext) {
		System.out.println("load in");
		 
		HttpServerResponse response = routingContext.response();
		//JDBCUtil jdbc = new JDBCUtil();
	/*	jdbc.getConnection(vertx).setHandler(conn->{ 
			if(conn.succeeded()){
				SQLConnection conns=conn.result();
				conns.query(" SELECT id,name FROM auth.test where deleted=false ", query -> {
					System.out.println("quert:"+query.cause());
					if (query.failed()) {
						sendError(500, response);
					} else {
						JsonArray arr = new JsonArray();
						query.result().getRows().forEach(arr::add);
						System.out.println("quert success");
						response.putHeader("content-type", "application/json").end(arr.encode());
					}
				}); 
			}else{
				System.out.println("fails");
				sendError(500, response);
			}
		});*/
		JsonArray array=new JsonArray();
		
		jdbc.query(vertx, " SELECT id,name FROM auth.test where deleted=false ", array)
		.setHandler(xx->{
			Gson gs = new GsonBuilder()
			        .serializeNulls()
			        .create();
			if(xx.succeeded()){
				Msg_Vo msg=xx.result();
				
				String res=gs.toJson(msg);
				 
				response.putHeader("content-type", "application/json").end(res);
			}else{
                Msg_Vo msg=new Msg_Vo(-1, "数据异常");
				String res=gs.toJson(msg);
				response.putHeader("content-type", "application/json").end(res);
			}
		});
		 
	}

	// 删除
	private void deleteuser(RoutingContext routingContext) {
		String id = routingContext.request().getParam("id");
		HttpServerResponse response = routingContext.response();
		if (id == null) {
			sendError(400, response);
		} else {
			JDBCUtil jdbc = new JDBCUtil();
			jdbc.getConnection(vertx).setHandler(conn->{
				SQLConnection conns=conn.result();
				conns.queryWithParams("SELECT id,name FROM auth.test where id = ?", new JsonArray().add(Integer.parseInt(id)),
						query -> {
							if (query.failed()) {
								sendError(500, response);
							} else {
								if (query.result().getNumRows() == 0) {
									sendError(404, response);
								} else {
									conns.updateWithParams("update auth.test set deleted=true where id=? ",
											new JsonArray().add(id), edit -> {
												if (edit.failed()) {
													sendError(500, routingContext.response());
												} else {
													routingContext.response().end();
												}
											});
								}
							}
						});
			});
			

			
		}
	}

	// 添加
	private void adduser(RoutingContext routingContext) {

		/*
		 * final Users user = Json.decodeValue(routingContext.getBodyAsString(),
		 * Users.class); users.put(user.getId(), user);
		 * routingContext.response().setStatusCode(201).putHeader(
		 * "content-type", "application/json; charset=utf-8")
		 * .end(Json.encodePrettily(user));
		 */

		 
		JsonObject user = routingContext.getBodyAsJson();
		JDBCUtil jdbc = new JDBCUtil();
		jdbc.getConnection(vertx).setHandler(conn->{
			SQLConnection conns=conn.result();
			conns.updateWithParams("INSERT INTO auth.test (name) VALUES (?)", new JsonArray().add(user.getString("name")),
					query -> {
						System.out.println("username:"+user.getString("name"));
						if (query.failed()) {
							sendError(500, routingContext.response());
						} else {
							routingContext.response().end();
						}
					});
		});
		
	}

	private void sendError(int statusCode, HttpServerResponse response) {
		response.setStatusCode(statusCode).end();
	}

	// 获取
	private void getUser(RoutingContext routingContext) {
		String id = routingContext.request().getParam("id");
		HttpServerResponse response = routingContext.response();
		if (id == null) {
			sendError(400, response);
		} else {
			JDBCUtil jdbc = new JDBCUtil();
			jdbc.getConnection(vertx).setHandler(conn->{
				SQLConnection conns=conn.result();
				conns.queryWithParams("SELECT id,name FROM test where id = ?", new JsonArray().add(Integer.parseInt(id)),
						query -> {
							if (query.failed()) {
								sendError(500, response);
							} else {
								if (query.result().getNumRows() == 0) {
									sendError(404, response);
								} else {
									response.putHeader("content-type", "application/json")
											.end(query.result().getRows().get(0).encode());
								}
							}
						});
			});
			
		}
	}

	// 修改
	private void updateuser(RoutingContext routingContext) {

		HttpServerResponse response = routingContext.response();
		JsonObject user = routingContext.getBodyAsJson();
		if (user == null || user.getInteger("id") == null) {
			sendError(400, response);
		} else {
			
			int id = user.getInteger("id");
			JDBCUtil jdbc = new JDBCUtil();
			jdbc.getConnection(vertx).setHandler(conn->{
				SQLConnection conns=conn.result();
				conns.queryWithParams("SELECT id,name FROM auth.test where id = ?", new JsonArray().add(id), query -> {
					if (query.failed()) {
						sendError(500, response);
					} else {
						if (query.result().getNumRows() == 0) {
							sendError(404, response);
						} else {
							conns.updateWithParams("update auth.test set name=? where id=? ",
									new JsonArray().add(user.getString("name")).add(id), edit -> {
										if (edit.failed()) {
											sendError(500, routingContext.response());
										} else {
											routingContext.response().end();
										}
									});
						}
					}
				});

			});
		}
	}
}