aboutsummaryrefslogtreecommitdiff
path: root/juick-api/src/main/java/com/juick/api/configuration/ApiAppConfiguration.java
blob: 409734e488ad1202b515054f34e7dad4ebf3a560 (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
package com.juick.api.configuration;

import com.juick.api.ApiServer;
import com.juick.api.TGBot;
import org.apache.commons.lang3.StringUtils;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
import org.springframework.core.env.Environment;

import javax.inject.Inject;

/**
 * Created by aalexeev on 11/12/16.
 */
@Configuration
@PropertySource("classpath:juick.conf")
public class ApiAppConfiguration {
    @Inject
    private Environment env;

    @Bean
    public ApiServer apiServer() {
        return new ApiServer(env);
    }

    @Bean
    public TGBot tgBot() {
        return new TGBot(env.getProperty("telegram_token", StringUtils.EMPTY));
    }
}