package controllers;
import java.util.ArrayList;
import java.util.List;
import models.Problem;
import models.Tag;
import models.User;
import play.data.validation.Validation;
import play.mvc.*;
public class Application extends Controller {
//默认每页显示20个
private static final int PAGESIZE = 20;
//搜索类型:问题概述
private static final String SUMMARY = "summary";
//搜索类型:提出人
private static final String AUTHOR = "author";
//搜索类型:分类标签
private static final String TYPE = "type";
@Before
static void setConnectedUser() {
if(Security.isConnected()) {
renderArgs.put("user", Security.connected());
}
renderArgs.put("tagsCloud", Tag.getCloud());
renderArgs.put("usersCloud", User.all().fetch());
}
/**
* 首页
*/
public static void index() {
search("", SUMMARY, 1);
}
/**
* 问题detail显示
* @param id
*/
public static void show(Long id) {
Problem problem = Problem.findById(id);
render(problem);
}
/**
* 新的问题提交
*/
public static void newPost() {
List<user> users = User.findAll();
List<tag> tags = Tag.findAll();
render(users, tags);
}
/**
* 增加问题
* @param id
*/
@SuppressWarnings("deprecation")
public static void addPost(String summary, String code, String solution, String note, Long userId) {
User user = User.findById(userId);
Problem problem = new Problem(summary, code, solution, note, user).save();
show(problem.id);
}
/**
* 搜索
* @param key
*/
public static void search(String key, String type, int page) {
List<problem> problems = new ArrayList<problem>();
//总数
int total = 0;
if(SUMMARY.equals(type)) {
problems = Problem.find("summary like ? order by postedAt desc", "%" + key.toLowerCase() + "%").from((page - 1) * PAGESIZE).fetch(PAGESIZE);
total = Problem.find("summary like ?", "%" + key.toLowerCase() + "%").fetch().size();
} else if(AUTHOR.equals(type)){
problems = Problem.find("select p from Problem p, User u where u.name like ? and p.user = u order by postedAt desc" , "%" + key + "%").from((page - 1) * PAGESIZE).fetch(PAGESIZE);
total = Problem.find("select p from Problem p, User u where u.name like ? and p.user = u" , "%" + key + "%").fetch().size();
} else if(TYPE.equals(type)){
problems = Problem.find(
"select distinct p from Problem p join p.tags as t where t.name like ? order by postedAt desc", "%" + key.toLowerCase() + "%").from((page - 1) * PAGESIZE).fetch(PAGESIZE);
total = Problem.find("select distinct p from Problem p join p.tags as t where t.name like ?", "%" + key.toLowerCase() + "%").fetch().size();
}
//总页数
int pageCount = (total + PAGESIZE - 1) / PAGESIZE;
render("Application/index.html", problems, page, total, pageCount, key, type);
}
/**
* 列出标签下所有的问题
* @param tag
*/
public static void listTagged(String tag) {
List<problem> problems = Problem.findTaggedWith(tag);
render(tag, problems);
}
public static void form(Long id) {
List<tag> allTags = Tag.all().fetch();
if(id != null) {
Problem problem = Problem.findById(id);
render(problem, allTags);
}
render(allTags);
}
@SuppressWarnings("deprecation")
public static void save(Long id, String summary, String code, String solution, String note, List<string> tags) {
Problem problem;
//保证session过期后用户提交表单不会出错
validation.isTrue(Security.connected() != null).message("请登录后再新增问题!记得保存当前页面内容");
if(id == null) {
User author = User.find("byName", Security.connected()).first();
problem = new Problem(summary, code, solution, note, author);
} else {
// Retrieve post
problem = Problem.findById(id);
// Edit
problem.summary = summary;
problem.code = code;
problem.solution = solution;
problem.note = note;
problem.tags.clear();
}
// Set tags list
if(tags != null && tags.size() > 0) {
for(String tag : tags) {
if(tag.trim().length() > 0) {
problem.tags.add(Tag.findOrCreateByName(tag));
}
}
}
// Validate
validation.valid(problem);
if(Validation.hasErrors()) {
render("@form", problem);
}
// Save
problem.save();
show(problem.id);
}
}</string></tag></problem></problem></problem></tag></user>
分享到:
相关推荐
PassMark BurnInTest V5.3 Copyright (C) 1999-2008 PassMark Software All Rights Reserved http://www.passmark.com Overview ======== Passmark's BurnInTest is a software tool that allows all the major sub...
eNetTest 网管内网单机测速工具eNetTest 网管内网单机测速工具eNetTest 网管内网单机测速工具eNetTest 网管内网单机测速工具eNetTest 网管内网单机测速工具eNetTest 网管内网单机测速工具eNetTest 网管内网单机测速...
最好用的单元测试工具,除了这里你是找不到9.0版本的破解的。 ... 独立的版本破解: ... 把lic_client.jar复制到 ... c:\Program Files (x86)\Parasoft\Test\9.0\plugins\...这个是:plugins-c++Test For Visual Studio.7z
c:\Program Files (x86)\Parasoft\C++test for Visual Studio\9.0\plugins\ 这个目录中 把plugins-Test for Virsual Studio.7z 中的文件覆盖到 c:\Program Files (x86)\Parasoft\Test for Visual Studio\9.0\...
Modeltest 使用说明 Modeltest 是一个选择核苷酸替代模型的软件,通过和 PAUP 配合使用,可以选择出合适的 MODEL,并同时计算出相关参数。下面是 Modeltest 的使用说明和相关知识点: 一、Modeltest 概述 * Model...
Parasoft C++Test 9.5是一款由Parasoft公司开发的专业自动化白盒测试工具,专注于C++编程语言的测试。它集成了多种测试策略,包括静态代码分析、动态测试、单元测试、代码覆盖率分析以及缺陷预防等功能,旨在提高...
(speedtest服务器搭建教程) 本篇教程旨在指导读者搭建speedtest服务器,通过安装PHPStudy、配置WNMP和Nginx、下载并配置speedtest测速平台,实现本地测速功能。 一、 PHPStudy 安装和配置 PHPStudy 是一个集成...
### ECU-Test高级教程知识点解析 #### 一、ECU-Test概述 **ECU-Test**是一款专为汽车电子控制单元(ECU)开发与验证而设计的强大工具。它支持自动化测试流程,并能有效管理和控制整个测试环境,极大地提高了ECU开发...
Google Test是Google开发的一款强大的C++测试框架,它使得C++开发者能够编写单元测试和集成测试,以确保代码的质量和稳定性。本文档将详细介绍Google Test框架的使用方法,包括基本概念、断言、测试套件、测试用例、...
最好用的单元测试工具,除了这里你是找不到9.0版本的破解的。 ... 独立的版本破解: ... 把lic_client.jar复制到 ... c:\Program Files (x86)\Parasoft\Test\9.0\plugins\...这个是:( plugins-Test for Virsual Studio.7z )
Test Track Client 使用说明 Test Track 是一个功能强大且实用的BUG管理软件,能够帮助测试工程师、开发工程师、开发主管和项目管理人员等角色更好地管理和跟踪项目中的BUG。该软件具有强大的管理功能和灵活的配置...
Test Bench是电子设计自动化(EDA)领域中的一个重要概念,主要用于验证数字集成电路的设计。在硬件描述语言(HDL,如Verilog或VHDL)中,Test Bench是模拟真实硬件环境来测试设计功能的一个虚拟平台。它能帮助...
CAN Test V2.53 软件使用说明 CAN Test V2.53 软件是一款功能强大且易用的CAN总线测试工具,旨在帮助用户快速地测试和诊断CAN总线设备。以下是CAN Test V2.53 软件使用说明的详细知识点: 软件安装 CAN Test 软件...
### ECU-TEST基本教程知识点概述 #### 一、ECU-TEST简介 ECU-TEST是一款由Vector公司开发的专业汽车电子控制单元(Electronic Control Unit, ECU)测试工具,它能够实现对ECU进行全面而深入的功能性测试,并且支持...
《Parasoft C++test 9.2官方用户手册_eclipse_中文版》是一本详尽的指南,专为使用C++test工具的开发者提供在Eclipse集成开发环境中的使用方法。C++test是一款强大的静态代码分析和单元测试工具,旨在提高C++软件的...
CANTest_Setup_V2.70.zip 是一个包含周立功CAN调试工具的软件安装包。这个工具主要用于汽车电子系统中的控制器局域网络(Controller Area Network, CAN)的测试和调试。CAN总线是一种广泛应用的多节点通信协议,尤其...
C++test简明操作手册 C++test是一款功能强大的测试工具,旨在帮助开发者编写高质量的代码。作为Parasoft公司的旗舰产品,C++test提供了全面的测试解决方案,涵盖了静态测试、动态测试、测试用例生成等多方面的测试...
**串口调试工具——PortTest详解** 在计算机通信领域,串行端口(Serial Port)是一种常见的硬件接口,用于设备间的通信。PortTest是一款专为串口调试设计的实用工具,它可以帮助用户检测和测试串口通讯功能,确保...