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