2016-03-20 23:54:30 +08:00
|
|
|
///<reference path="../../browser.d.ts"/>
|
|
|
|
|
|
|
|
import {Injectable} from 'angular2/core';
|
2016-05-01 00:01:54 +08:00
|
|
|
import {NetworkService} from "../model/network/network.service.ts";
|
2016-03-20 23:54:30 +08:00
|
|
|
import {Http} from "angular2/http";
|
|
|
|
import {Message} from "../../../common/entities/Message";
|
|
|
|
import {Directory} from "../../../common/entities/Directory";
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class GalleryService extends NetworkService{
|
|
|
|
|
|
|
|
|
|
|
|
constructor(_http:Http){
|
|
|
|
super(_http);
|
|
|
|
}
|
|
|
|
|
|
|
|
public getDirectory(directoryName:string): Promise<Message<Directory>>{
|
|
|
|
return this.getJson("/gallery/"+directoryName);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|