25 lines
564 B
Dart
25 lines
564 B
Dart
// #docregion
|
|
import 'package:angular2/core.dart';
|
|
|
|
import '../logger_service.dart';
|
|
import 'hero.dart';
|
|
import 'mock_heroes.dart';
|
|
|
|
@Injectable()
|
|
class HeroService {
|
|
// #docregion internals
|
|
final Logger _logger;
|
|
final bool _isAuthorized;
|
|
|
|
HeroService(this._logger, this._isAuthorized);
|
|
|
|
List<Hero> getHeroes() {
|
|
var auth = _isAuthorized ? 'authorized' : 'unauthorized';
|
|
_logger.log('Getting heroes for $auth user.');
|
|
return HEROES
|
|
.where((hero) => _isAuthorized || !hero.isSecret)
|
|
.toList();
|
|
}
|
|
// #enddocregion internals
|
|
}
|