File size: 990 Bytes
ca668ce d193c91 ca668ce d193c91 ca668ce d193c91 ca668ce d193c91 ca668ce |
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 |
import { Controller, Get, Redirect, Render } from '@nestjs/common';
import { AppService } from './app.service';
import { ConfigService } from '@nestjs/config';
import { ConfigurationType } from './configuration';
@Controller()
export class AppController {
constructor(
private readonly appService: AppService,
private readonly configService: ConfigService,
) {}
@Get()
getHello(): string {
return this.appService.getHello();
}
@Get('/robots.txt')
forRobot(): string {
return 'User-agent: *\nDisallow: /';
}
@Get('favicon.ico')
@Redirect('https://r2-assets.111965.xyz/wewe-rss.png', 302)
getFavicon() {}
@Get('/dash*')
@Render('index.hbs')
dashRender() {
const { originUrl: weweRssServerOriginUrl } =
this.configService.get<ConfigurationType['feed']>('feed')!;
const { code } = this.configService.get<ConfigurationType['auth']>('auth')!;
return {
weweRssServerOriginUrl,
enabledAuthCode: !!code,
};
}
}
|