Compare commits

..

50 Commits

Author SHA1 Message Date
ac988b9b09 4.0.2 2020-04-13 17:30:49 +00:00
0b6c83a806 fix(core): update 2020-04-13 17:30:49 +00:00
37cbf0f8c8 4.0.1 2018-07-21 23:33:54 +02:00
29decabf91 fix(dependencies): remove obsolete imports of typings-global 2018-07-21 23:33:54 +02:00
afcb5d5b0c 4.0.0 2018-07-21 23:26:11 +02:00
53905df003 BREAKING CHANGE(package): change scope 2018-07-21 23:26:11 +02:00
09d424e972 3.2.8 2017-02-19 03:29:58 +01:00
f66864d0af update to support latest deps 2017-02-19 03:29:54 +01:00
930d90345a 3.2.7 2016-11-27 00:15:33 +01:00
39835a4d27 add better README 2016-11-27 00:15:30 +01:00
13c001c48a 3.2.6 2016-11-26 22:46:40 +01:00
7916929550 added Smartpath class and path level array 2016-11-26 22:46:36 +01:00
c52c1902ee 3.2.5 2016-09-30 17:14:11 +02:00
06c60d42c1 add gitlab ci 2016-09-30 17:14:06 +02:00
38668239d4 3.2.4 2016-09-30 17:10:36 +02:00
3d0257768d improve absolute path handling 2016-09-30 17:08:09 +02:00
e09ce0edc0 3.2.3 2016-06-14 05:18:46 +02:00
3d4c2e64b4 3.2.2 2016-06-14 05:18:26 +02:00
139478965b update dependencies 2016-06-14 05:16:43 +02:00
1e545a2cfb updated deps 2016-05-02 02:42:41 +02:00
10b593b480 3.2.1 2016-05-01 21:44:44 +02:00
839a86ccf1 fixed issue with typings 2016-05-01 21:44:40 +02:00
06ebd44189 3.2.0 2016-04-30 12:08:44 +02:00
3d5aa9fda7 now has package typings 2016-04-30 12:07:49 +02:00
cc5f57da44 3.1.5 2016-04-30 11:02:07 +02:00
2866a76abc added check module 2016-04-30 11:02:03 +02:00
a8f93682fc 3.1.4 2016-04-05 01:00:03 +02:00
2833666d14 updated deps 2016-04-05 01:00:02 +02:00
0ca312bd02 3.1.3 2016-04-05 00:45:09 +02:00
a8f53ae2ae add .npmignore 2016-04-05 00:44:58 +02:00
5b7f104c88 3.1.2 2016-04-05 00:35:25 +02:00
f2423f7c61 update deps 2016-04-05 00:35:15 +02:00
57680424c4 3.1.1 2016-04-04 23:05:04 +02:00
04b942092c 3.1.0 2016-04-04 16:25:21 +02:00
209ff095a4 now exposing home 2016-04-04 16:25:17 +02:00
fb62b0aac7 update travis file 2016-03-26 12:28:37 +01:00
736eefa91e 3.0.3 2016-03-26 12:14:21 +01:00
8fc994737b updated dependencies 2016-03-26 12:12:07 +01:00
32e478ef4e 3.0.2 2016-03-26 12:07:22 +01:00
451e2e241f now differentiating between URL and FilePath 2016-03-26 12:07:17 +01:00
202914b19b 3.0.1 2016-03-21 00:43:48 +01:00
373a4eed94 update 2016-03-21 00:42:56 +01:00
9a9f28bdff 3.0.0 2016-03-20 18:59:37 +01:00
2bd242ac57 now has better structure 2016-03-20 18:59:30 +01:00
b113dcfbe0 fix travis.yml 2016-03-12 10:00:22 +01:00
dc6636d552 2.1.0 2016-03-12 09:58:28 +01:00
72c70c481a fixed package.json 2016-03-12 09:58:19 +01:00
8986953592 2.0.0 2016-03-12 09:36:36 +01:00
8a2afe1a81 add travis 2016-03-12 09:36:30 +01:00
48f44ee937 update plugin to use nmpts 2016-03-12 08:24:05 +01:00
25 changed files with 1969 additions and 2181 deletions

21
.gitignore vendored
View File

@ -1,3 +1,20 @@
.nogit/
# artifacts
coverage/
public/
pages/
# installs
node_modules/ node_modules/
.settings/
.idea/ # caches
.yarn/
.cache/
.rpt2_cache
# builds
dist/
dist_*/
# custom

127
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,127 @@
# gitzone ci_default
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
cache:
paths:
- .npmci_cache/
key: '$CI_BUILD_STAGE'
stages:
- security
- test
- release
- metadata
# ====================
# security stage
# ====================
mirror:
stage: security
script:
- npmci git mirror
tags:
- lossless
- docker
- notpriv
audit:
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
stage: security
script:
- npmci npm prepare
- npmci command npm install --ignore-scripts
- npmci command npm config set registry https://registry.npmjs.org
- npmci command npm audit --audit-level=high
tags:
- lossless
- docker
- notpriv
# ====================
# test stage
# ====================
testStable:
stage: test
script:
- npmci npm prepare
- npmci node install stable
- npmci npm install
- npmci npm test
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- lossless
- docker
- priv
testBuild:
stage: test
script:
- npmci npm prepare
- npmci node install stable
- npmci npm install
- npmci command npm run build
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- lossless
- docker
- notpriv
release:
stage: release
script:
- npmci node install stable
- npmci npm publish
only:
- tags
tags:
- lossless
- docker
- notpriv
# ====================
# metadata stage
# ====================
codequality:
stage: metadata
allow_failure: true
script:
- npmci command npm install -g tslint typescript
- npmci npm prepare
- npmci npm install
- npmci command "tslint -c tslint.json ./ts/**/*.ts"
tags:
- lossless
- docker
- priv
trigger:
stage: metadata
script:
- npmci trigger
only:
- tags
tags:
- lossless
- docker
- notpriv
pages:
stage: metadata
script:
- npmci node install lts
- npmci command npm install -g @gitzone/tsdoc
- npmci npm prepare
- npmci npm install
- npmci command tsdoc
tags:
- lossless
- docker
- notpriv
only:
- tags
artifacts:
expire_in: 1 week
paths:
- public
allow_failure: true

View File

@ -1,19 +0,0 @@
language: node_js
before_install:
- nvm install stable
- node -v
- npm -v
- npm install -g gulp
- npm install gulp
- npm install gulp-typescript
deploy:
provider: npm
email: npm@smart-coordination.com
api_key:
secure: hfuRCg2RSNTvSe49w+rqx/fPt2OILDTjdYkga5BnGr0Rja5yL/2SpVNOP62lYNQBB61TfqfT8F4gQsQyAuygzhNT1ijZ4qCvSdqHqXki/0hzTVZAvfF2aoLxUnuCMAYawUyx5nibJKCmGXvH9MbMrEwV5Gh0uSf0HRmskp/GKuXw5epnMkOT2SEr9Mw7Hpu3VKLEALoKOI2hYBRv555sRFkI3Cd9v1n0384HEjCbQEwXhPwwki2XL2SXzGP8IOccE3xLK9zsQO2RDCqaKpIsK682ZtrvyqxmAJaivtO6VImkpBXcKniYOqJR6sWrsw5345er/iSSr30fgjw4I6LNyUcmF59Uw/dPAElvLN6jU6zxg/+GHM7xqz/J/HV3rlE4d20/9ZJB9IIm2761c3T7DraBMbA7ehj1lolTvCq1vx8oGbNEhkTVBj06V3ltdMPHMiNbeG2Tqs50h/lOgRy5+oqZ8ULWayWX1KXloM3LlddXJnnB31LzHbZUZw7m+q8QnfBlPCWuLd1JfluFrszr1YAR6YPciL9grBNV7beG+8wbh2G0gfMdCHZOzhDmoEHgt/y8liV0QdsFH6QLlEwt8UMPeZ8IO0sNYx5A2ffznZIzy9xEDmMySwl8J3/EdQxhS6FGrm000lu4BH+c2dVlCn/5va9fJLD+m6seSN8Yy40=
on:
tags: true
repo: pushrocks/smartpath
notifications:
slack:
secure: f5Uss0z9RPl/QcA/DroB8loyE93aOYI6bqCkrsiUscmZtlv/TVQtT4dxqGA6uvcG6iTQDBi3Ul88dQxWkRm4IqbhY35/iMaV2dHW4FVYMAh8GQMbsfL2sALCcufxD9blw47awv3iFcwhV1EeyesscjgL0JIjduk96v/7G/6QIO2838M1lzlgtj+kRUkim8qkaEs1je3gRrhMUIjLuAdscMXyUKYFMjWo9ACSjVUl30R/ZNemb18itIja6i92GotreBgcfEMczvy58ovDC7xdJUsY8LjMI01DwY+WPRnI0tAhsuI8moBwwcdM4e3bAjKjucQRjO33O5bMWRZ6QCiYd0DnCEFyCPQLJ4GSy/tkD00n8ijLHAOSV3AH1zNbdK1EAdSPQXDvlI36KJn/2hyQLoitGHVUPr76ujJWP82ypO2tgIp3XQU0dJVCxDuHnwJO2+hjdI+gCPqxNTpjeujHx3UdkTGNRjuuf9dlZ/D08fApjYxy2fxItTqo3QjP/nrqvBXUOPP8yPHpjIT4H2t5Pr4SJjBGI6X4qhKyFj6s9rA/Xu1rL+45zu1C3uC3z+u3T9UwrbzJ/cZM6r6UQvQmUvIfBNaMlg4I/diQCDIPL+Rhop2nylY3IcHmJnk2itn7kOqj1tohCpFEml5pRuSZy4udWywkdtyBAsHWFLF7oiQ=

29
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,29 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "current file",
"type": "node",
"request": "launch",
"args": [
"${relativeFile}"
],
"runtimeArgs": ["-r", "@gitzone/tsrun"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "test.ts",
"type": "node",
"request": "launch",
"args": [
"test/test.ts"
],
"runtimeArgs": ["-r", "@gitzone/tsrun"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
}
]
}

26
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,26 @@
{
"json.schemas": [
{
"fileMatch": ["/npmextra.json"],
"schema": {
"type": "object",
"properties": {
"npmci": {
"type": "object",
"description": "settings for npmci"
},
"gitzone": {
"type": "object",
"description": "settings for gitzone",
"properties": {
"projectType": {
"type": "string",
"enum": ["website", "element", "service", "npm"]
}
}
}
}
}
}
]
}

View File

@ -1,6 +1,6 @@
The MIT License (MIT) The MIT License (MIT)
Copyright (c) 2015 Push.Rocks Copyright (c) 2015 Lossless GmbH
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@ -1,2 +0,0 @@
# smartpath
offers smart ways to handle paths

View File

@ -1,19 +0,0 @@
/// <reference path="typings/tsd.d.ts" />
var path = require("path");
var bl = require("beautylog");
/**
*
* @type {{getPath: (function(any): undefined)}}
*/
var smartpath = {
getAbsPath: function (varPath, logBool) {
if (logBool === void 0) { logBool = false; }
var absPath = path.resolve(varPath);
if (logBool == true) {
bl.log('varPath is' + varPath);
bl.log('absPath is' + absPath);
}
return absPath;
}
};
module.exports = smartpath;

19
npmextra.json Normal file
View File

@ -0,0 +1,19 @@
{
"npmci": {
"npmGlobalTools": [
"@gitzone/npmts"
],
"npmAccessLevel": "public"
},
"gitzone": {
"projectType": "npm",
"module": {
"githost": "gitlab.com",
"gitscope": "pushrocks",
"gitrepo": "smartpath",
"shortDescription": "offers smart ways to handle paths",
"npmPackagename": "@pushrocks/smartpath",
"license": "MIT"
}
}
}

1526
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,10 +1,13 @@
{ {
"name": "smartpath", "name": "@pushrocks/smartpath",
"version": "1.0.2", "version": "4.0.2",
"private": false,
"description": "offers smart ways to handle paths", "description": "offers smart ways to handle paths",
"main": "index.js", "main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"scripts": { "scripts": {
"test": "cd ts/compile && gulp" "test": "(tstest test)",
"build": "(tsbuild)"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
@ -15,11 +18,30 @@
"jade", "jade",
"template" "template"
], ],
"author": "Smart Coordination GmbH <office@push.rocks> (https://push.rocks)", "author": "Lossless GmbH <office@lossless.com> (https://lossless.com)",
"license": "MIT", "license": "MIT",
"bugs": { "bugs": {
"url": "https://github.com/pushrocks/smartpath/issues" "url": "https://github.com/pushrocks/smartpath/issues"
}, },
"homepage": "https://github.com/pushrocks/smartpath", "homepage": "https://github.com/pushrocks/smartpath",
"dependencies": {} "dependencies": {},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.17",
"@gitzone/tsrun": "^1.2.8",
"@gitzone/tstest": "^1.0.28",
"@pushrocks/tapbundle": "^3.2.0",
"@types/node": "^10.5.2"
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
]
} }

66
test/test.ts Normal file
View File

@ -0,0 +1,66 @@
import { tap, expect } from '@pushrocks/tapbundle';
import * as smartpath from '../ts/index';
let mySmartpath: smartpath.Smartpath;
tap.test('expect create a valid instance', async () => {
mySmartpath = new smartpath.Smartpath('/some/path/to/some.file');
expect(mySmartpath).to.be.instanceof(smartpath.Smartpath);
expect(mySmartpath.pathLevelsBackwards).to.be.of.length(5);
});
let filePathString = './somedir/somefile.json';
let dirPathString = './somedir/anotherdir';
let dirPathString2 = './somedir/another.dir/';
tap.test('expect be true for a file path', async () => {
expect(smartpath.check.isFile(filePathString)).to.be.true;
});
tap.test('expect be false for a directory path', async () => {
expect(smartpath.check.isFile(dirPathString)).to.be.false;
expect(smartpath.check.isFile(dirPathString2)).to.be.false;
});
tap.test('expect be true for a directory path', async () => {
expect(smartpath.check.isDir(dirPathString)).to.be.true;
expect(smartpath.check.isDir(dirPathString2)).to.be.true;
});
tap.test('expect be false for a file path', async () => {
expect(smartpath.check.isDir(filePathString)).to.be.false;
});
let baseString = '/basedir';
let relativeString = 'somedir/somefile.txt';
let relativeString2 = 'anotherdir/anotherfile.txt';
let relativeArray = [relativeString, relativeString, relativeString2];
tap.test('expect make a string absolute', async () => {
expect(smartpath.transform.toAbsolute(relativeString)).startWith('/');
expect(smartpath.transform.toAbsolute(relativeString)).endWith(relativeString);
expect(smartpath.transform.toAbsolute(relativeString, baseString)).equal(
'/basedir/somedir/somefile.txt'
);
});
tap.test('expect make an array of relative Strings an Array of absolute Strings', async () => {
let absoluteArray = smartpath.transform.toAbsolute(relativeArray, baseString);
expect(absoluteArray[2]).to.startWith('/');
expect(absoluteArray[2]).endWith(relativeString2);
});
tap.test("expect return 'url' for an URL", async () => {
expect(smartpath.get.type('https://push.rocks/some/url')).equal('url');
expect(smartpath.get.type('https://push.rocks/some/url')).not.equal('local');
});
tap.test("expect return 'path' for a Path", async () => {
expect(smartpath.get.type('/some/absolute/path/')).equal('local');
expect(smartpath.get.type('./some/relative/path/')).not.equal('url');
});
tap.test('expect a absolute path for an home relative URL', async () => {
console.log(smartpath.get.home('~/test'));
});
tap.test('expect return the home directory path when no argument is specified', async () => {
console.log(smartpath.get.home());
});
tap.start();

View File

@ -1,2 +0,0 @@
nvm use v0.12.7
gulp

View File

@ -1,16 +0,0 @@
// import gulp
var gulp = require("gulp"),
gulpTypescript = require("gulp-typescript");
gulp.task('compileTS', function() {
var stream = gulp.src('../index.ts')
.pipe(gulpTypescript({
out: "index.js"
}))
.pipe(gulp.dest("../../"));
return stream;
});
gulp.task('default',['compileTS'], function() {
console.log('Typescript compiled');
});

View File

@ -1,2 +0,0 @@
# How to compile.
Make sure gulp and gulp-taypescript from npm are available. Then run the gulpfile in this directory.

View File

@ -1,22 +1,8 @@
/// <reference path="typings/tsd.d.ts" /> // import modules
import * as check from './smartpath.check';
import * as get from './smartpath.get';
import * as transform from './smartpath.transform';
var path = require("path"); export { check, get, transform };
var bl = require("beautylog");
/** export * from './smartpath.classes.smartpath';
*
* @type {{getPath: (function(any): undefined)}}
*/
var smartpath:any = {
getAbsPath: function(varPath,logBool = false) {
var absPath = path.resolve(varPath);
if (logBool == true) {
bl.log('varPath is' + varPath);
bl.log('absPath is' + absPath);
}
return absPath;
}
};
module.exports = smartpath;

9
ts/smartpath.check.ts Normal file
View File

@ -0,0 +1,9 @@
import plugins = require('./smartpath.plugins');
export let isDir = function(pathArg: string) {
return !isFile(pathArg);
};
export let isFile = function(pathArg) {
return /\.[a-zA-Z]*$/.test(pathArg); // checks if there is a .anything at the end
};

View File

@ -0,0 +1,15 @@
import * as plugins from './smartpath.plugins';
import * as getMod from './smartpath.get';
export class Smartpath {
originalPath: string;
type: getMod.TPathType;
pathLevels: string[];
pathLevelsBackwards: string[];
constructor(pathArg: string) {
this.originalPath = pathArg;
this.type = getMod.type(this.originalPath);
this.pathLevels = getMod.pathLevels(this.originalPath);
this.pathLevelsBackwards = getMod.pathLevelsBackwards(this.originalPath);
}
}

36
ts/smartpath.get.ts Normal file
View File

@ -0,0 +1,36 @@
import plugins = require('./smartpath.plugins');
export type TPathType = 'url' | 'local';
/**
* returns the type of the given path. Can be "url" or "local"
*/
export let type = function(pathStringArg: string): TPathType {
let urlRegex = /http[s|\s]:\/\/.*/i;
if (urlRegex.exec(pathStringArg)) {
return 'url';
} else {
return 'local';
}
};
export let home = function(pathArgument?: string) {
if (pathArgument) {
return pathArgument.replace('~', plugins.os.homedir());
} else {
return plugins.os.homedir();
}
};
export type TSystemArg = 'dynamic' | 'windows' | 'linux' | 'osx';
export let pathLevels = (pathArg: string, systemArg: TSystemArg = 'dynamic') => {
let pathLevelArray: string[];
if (systemArg === 'dynamic') {
pathLevelArray = pathArg.split(plugins.path.sep);
}
return pathLevelArray;
};
export let pathLevelsBackwards = (pathArg: string, systemArg?: TSystemArg) => {
return pathLevels(pathArg, systemArg).reverse();
};

4
ts/smartpath.plugins.ts Normal file
View File

@ -0,0 +1,4 @@
import * as os from 'os';
import * as path from 'path';
export { os, path };

41
ts/smartpath.transform.ts Normal file
View File

@ -0,0 +1,41 @@
import plugins = require('./smartpath.plugins');
/* ------------------------------------------ *
* ------------ helpers --------------------- *
* ------------------------------------------ */
// checks a file
let makeAbsolute = function(localPathArg: string, baseArg?: string): string {
let absolutePath: string;
let alreadyAbsolute = plugins.path.isAbsolute(localPathArg);
if (baseArg && !alreadyAbsolute) {
absolutePath = plugins.path.join(baseArg, localPathArg);
} else if (!alreadyAbsolute) {
absolutePath = plugins.path.resolve(localPathArg);
} else {
absolutePath = localPathArg;
}
return absolutePath;
};
/* ------------------------------------------ *
* ------- export functions ----------------- *
* ------------------------------------------ */
export let toAbsolute = function(relativeArg: string | string[], baseArg?: string): any {
if (typeof relativeArg === 'string') {
return makeAbsolute(relativeArg, baseArg);
} else if (Array.isArray(relativeArg)) {
let relativeArray = relativeArg;
let absoluteArray: string[] = [];
for (let key in relativeArray) {
absoluteArray.push(makeAbsolute(relativeArray[key], baseArg));
}
return absoluteArray;
} else {
console.error(
'smartpath.absolute() could not make sense of the input. ' +
'Input is neither String nor Array'
);
return false;
}
};

View File

@ -1,12 +0,0 @@
{
"version": "v4",
"repo": "borisyankov/DefinitelyTyped",
"ref": "master",
"path": "typings",
"bundle": "typings/tsd.d.ts",
"installed": {
"node/node.d.ts": {
"commit": "efa0c1196d7280640e624ac1e7fa604502e7bd63"
}
}
}

File diff suppressed because it is too large Load Diff

1
ts/typings/tsd.d.ts vendored
View File

@ -1 +0,0 @@
/// <reference path="node/node.d.ts" />

17
tslint.json Normal file
View File

@ -0,0 +1,17 @@
{
"extends": ["tslint:latest", "tslint-config-prettier"],
"rules": {
"semicolon": [true, "always"],
"no-console": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"member-ordering": {
"options":{
"order": [
"static-method"
]
}
}
},
"defaultSeverity": "warning"
}