Source: core/server-folder.js

  1. /**
  2. A folder with a related file (e.g. thumbnail).
  3. */
  4. export class ServerFolder {
  5. /**
  6. @param baseUrl parent folder
  7. @param name folder name
  8. @param related name of related file in the parent folder, or full path to the file
  9. */
  10. constructor( baseUrl, name, related ) {
  11. /** base url */
  12. this.baseUrl = baseUrl;
  13. /** folder name*/
  14. this.name = name;
  15. /** related file name */
  16. this.related = related;
  17. }
  18. /** returns full path of the folder */
  19. url() {
  20. return this.baseUrl+this.name;
  21. }
  22. /** Returns full path of related file */
  23. relatedUrl() {
  24. if ( this.related ) {
  25. if ( this.related.indexOf('/')>=0) {
  26. // absolute URL
  27. return this.related;
  28. }
  29. return this.baseUrl+this.related;
  30. }
  31. return null;
  32. }
  33. }
  34. export class ServerFile extends ServerFolder {
  35. /**
  36. * Create new server file from URL string.
  37. * URL can be either relative or absolute, and is parsed to find the path of the file.
  38. */
  39. constructor(url, related) {
  40. super();
  41. /** Original url used to construct the instance */
  42. this.fileUrl = url; // or this.url.href
  43. /** Related file url, may be null */
  44. this.related = related;
  45. /** Path part of the url, i.e. directory and file, without protocol and host and query */
  46. this.pathname = null;
  47. /** File part of this url */
  48. this.file = null;
  49. /** Base part of the file name (i.e. without extension) */
  50. this.baseName = null;
  51. /** Extension part of the file name (after the dot) */
  52. this.extension = null;
  53. this.relative = null;
  54. let start = url.indexOf('://');
  55. if ( start == -1 ) {
  56. // relative url
  57. this.pathname = url.substring(0);
  58. this.relative = true;
  59. } else {
  60. // absolute, first one is the host
  61. start = url.indexOf('/',start+1);
  62. this.pathname = url.substring(start);
  63. this.relative = false;
  64. }
  65. let pos = url.lastIndexOf('/');
  66. this.file = url.substring(pos+1);
  67. pos = this.file.indexOf('.');
  68. this.baseName = this.file.substring(0,pos);
  69. this.extension = this.file.substring(pos+1);
  70. // CHECKME: this is done only for compatibility with ServerFolder; is it used anywhere?
  71. pos = url.lastIndexOf('/');
  72. let path = url.substring(0,pos);
  73. pos = path.lastIndexOf('/');
  74. this.baseUrl = path.substring(0,pos+1);
  75. this.name = path.substring(pos+1);
  76. }
  77. getPath() {
  78. return this.pathname;
  79. }
  80. }