aboutsummaryrefslogtreecommitdiff
path: root/juick-api/src/main/java/com/juick/api/controllers/Tags.java
blob: ab2ee7cebf94d4a581aa0436ecb7a6841fa65222 (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
package com.juick.api.controllers;

import com.juick.User;
import com.juick.server.helpers.TagStats;
import com.juick.service.TagService;
import com.juick.service.UserService;
import com.juick.server.util.UserUtils;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

import javax.inject.Inject;
import java.util.List;

/**
 * Created by vitalyster on 29.11.2016.
 */
@RestController
public class Tags {
    @Inject
    UserService userService;
    @Inject
    TagService tagService;

    @RequestMapping(value = "/tags", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
    public List<TagStats> tags(
            @RequestParam(required = false, defaultValue = "0") int user_id
    ) {
        User visitor = UserUtils.getCurrentUser();
        if (user_id == 0) {
            user_id = visitor.getUid();
        }
        if (user_id > 0) {
            return tagService.getUserTagStats(user_id);
        }
        return tagService.getTagStats();
    }
}