blob: 49e24c8ce82d5bc0a15b3e2aa32c98261c7c7529 (
plain) (
blame)
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
|
package com.juick.www.controllers;
import com.juick.User;
import com.juick.server.util.HttpNotFoundException;
import com.juick.service.UserService;
import com.juick.util.UserUtils;
import org.springframework.core.io.ClassPathResource;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import javax.inject.Inject;
import java.io.IOException;
import java.net.URISyntaxException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.security.Principal;
import java.util.Optional;
import java.util.stream.Collectors;
/**
* Created by aalexeev on 11/21/16.
*/
@Controller
public class HelpController {
@Inject
UserService userService;
@RequestMapping({"/help", "/help/{lang}", "/help/{lang}/{page}"})
protected String doGetHelp(
Principal principal,
@PathVariable("lang") Optional<String> lang,
@PathVariable("page") Optional<String> page,
ModelMap model) throws IOException, URISyntaxException {
String name = UserUtils.getUsername(principal, null);
User visitor = userService.getUserByName(name);
lang.ifPresent(l -> {
if (l.length() != 2 || !l.matches("^[a-z]+$")) {
throw new HttpNotFoundException();
}
});
if (!lang.isPresent()) {
lang = Optional.of("ru");
}
page.ifPresent(p -> {
if (!p.matches("^[a-zA-Z0-9\\-]*$") || p.equals("navigation") || p.equals("index")) {
throw new HttpNotFoundException();
}
});
if (!page.isPresent()) {
page = Optional.of("index");
}
String filePath = "help/" + lang.get() + "/" + page.get();
String navigationPath = "help/" + lang.get() + "/navigation";
model.addAttribute("title", "Помощь");
model.addAttribute("visitor", visitor);
model.addAttribute("help_nav", Files.readAllLines(Paths.get(new ClassPathResource(navigationPath).getURI()))
.stream().collect(Collectors.joining()));
model.addAttribute("help_data", Files.readAllLines(Paths.get(new ClassPathResource(filePath).getURI()))
.stream().collect(Collectors.joining()));
return "views/help";
}
}
|