-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphp.js
More file actions
80 lines (69 loc) · 1.57 KB
/
php.js
File metadata and controls
80 lines (69 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
'use strict';
/**
* External dependencies
*/
import {
src,
dest,
} from 'gulp';
import { pipeline } from 'mississippi';
import gulpIf from 'gulp-if';
import phpcs from 'gulp-phpcs';
/**
* Internal dependencies
*/
import {
paths,
PHPCSOptions,
isProd,
} from './constants';
import { getMainConfig } from './utils';
import { startStringReplace } from './helper/base';
/**
* Returns a single stream sniffing with WPCS.
*
* @return {Object} Pumpify pipeline object.
*/
export const sniffCodingStandard = () => {
const config = getMainConfig( isProd );
return pipeline.obj( [
// Only code sniff PHP files if the debug setting is true.
gulpIf( config.dev.debug.phpcs, phpcs( PHPCSOptions ) ),
// Log all problems that were found.
phpcs.reporter( 'log' ),
] );
};
/**
* Starts processing for dev environment.
*
* No string replacement and saving while in dev env.
*
* @return {NodeJS.ReadWriteStream} NodeJS stream.
*/
export const startPHPDev = () => {
return src( paths.php.src )
.pipe( sniffCodingStandard() )
.pipe( dest( paths.php.dest ) );
};
/**
* Starts processing for export.
*
* @return {NodeJS.ReadWriteStream} NodeJS stream.
*/
export const startPHPExport = () => {
return src( paths.php.src )
.pipe( sniffCodingStandard() )
.pipe( startStringReplace() )
.pipe( dest( paths.php.dest ) );
};
/**
* Sniffs code using WPCS.
*
* During production, names are replaced with the user configuration.
*
* @return {NodeJS.ReadWriteStream} NodeJS stream.
*/
const php = () => {
return isProd ? startPHPExport() : startPHPDev();
};
export default php;