Skip to content

Commit 3e7555f

Browse files
Merge branch 'main' into patch-1
2 parents 7f2864c + 890ef8c commit 3e7555f

11 files changed

+173
-11
lines changed

.github/actions/get-version/action.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,5 @@ runs:
1717
- id: get_version
1818
shell: bash
1919
run: |
20-
VERSION=$(echo ${BRANCH_NAME} | sed -r 's#release/+##g')
20+
VERSION=$(head -1 .version)
2121
echo "VERSION=${VERSION}" >> $GITHUB_OUTPUT
22-
env:
23-
BRANCH_NAME: ${{ github.event.pull_request.head.ref }}

.github/actions/rl-scanner/action.yml

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
name: 'Reversing Labs Scanner'
2+
description: 'Runs the Reversing Labs scanner on a specified artifact.'
3+
inputs:
4+
artifact-path:
5+
description: 'Path to the artifact to be scanned.'
6+
required: true
7+
version:
8+
description: 'Version of the artifact.'
9+
required: true
10+
11+
runs:
12+
using: 'composite'
13+
steps:
14+
- name: Set up Python
15+
uses: actions/setup-python@v4
16+
with:
17+
python-version: '3.10'
18+
19+
- name: Install Python dependencies
20+
shell: bash
21+
run: |
22+
pip install boto3 requests
23+
24+
- name: Configure AWS credentials
25+
uses: aws-actions/configure-aws-credentials@v1
26+
with:
27+
role-to-assume: ${{ env.PRODSEC_TOOLS_ARN }}
28+
aws-region: us-east-1
29+
mask-aws-account-id: true
30+
31+
- name: Install RL Wrapper
32+
shell: bash
33+
run: |
34+
pip install rl-wrapper>=1.0.0 --index-url "https://${{ env.PRODSEC_TOOLS_USER }}:${{ env.PRODSEC_TOOLS_TOKEN }}@a0us.jfrog.io/artifactory/api/pypi/python-local/simple"
35+
36+
- name: Run RL Scanner
37+
shell: bash
38+
env:
39+
RLSECURE_LICENSE: ${{ env.RLSECURE_LICENSE }}
40+
RLSECURE_SITE_KEY: ${{ env.RLSECURE_SITE_KEY }}
41+
SIGNAL_HANDLER_TOKEN: ${{ env.SIGNAL_HANDLER_TOKEN }}
42+
PYTHONUNBUFFERED: 1
43+
run: |
44+
if [ ! -f "${{ inputs.artifact-path }}" ]; then
45+
echo "Artifact not found: ${{ inputs.artifact-path }}"
46+
exit 1
47+
fi
48+
49+
rl-wrapper \
50+
--artifact "${{ inputs.artifact-path }}" \
51+
--name "${{ github.event.repository.name }}" \
52+
--version "${{ inputs.version }}" \
53+
--repository "${{ github.repository }}" \
54+
--commit "${{ github.sha }}" \
55+
--build-env "github_actions" \
56+
--suppress_output
57+
58+
# Check the outcome of the scanner
59+
if [ $? -ne 0 ]; then
60+
echo "RL Scanner failed."
61+
echo "scan-status=failed" >> $GITHUB_ENV
62+
exit 1
63+
else
64+
echo "RL Scanner passed."
65+
echo "scan-status=success" >> $GITHUB_ENV
66+
fi
67+
68+
outputs:
69+
scan-status:
70+
description: 'The outcome of the scan process.'
71+
value: ${{ env.scan-status }}

.github/workflows/release.yml

+17
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,32 @@ on:
55
types:
66
- closed
77

8+
9+
810
permissions:
911
contents: write
12+
id-token: write # This is required for requesting the JWT
1013

1114
### TODO: Replace instances of './.github/actions/' w/ `auth0/dx-sdk-actions/` and append `@latest` after the common `dx-sdk-actions` repo is made public.
1215
### TODO: Also remove `get-prerelease`, `get-version`, `release-create`, `tag-create` and `tag-exists` actions from this repo's .github/actions folder once the repo is public.
1316

1417
jobs:
18+
rl-scanner:
19+
uses: ./.github/workflows/rl-scanner.yml
20+
with:
21+
php-version: 8.2
22+
artifact-name: 'laravel-auth0.zip'
23+
secrets:
24+
RLSECURE_LICENSE: ${{ secrets.RLSECURE_LICENSE }}
25+
RLSECURE_SITE_KEY: ${{ secrets.RLSECURE_SITE_KEY }}
26+
SIGNAL_HANDLER_TOKEN: ${{ secrets.SIGNAL_HANDLER_TOKEN }}
27+
PRODSEC_TOOLS_USER: ${{ secrets.PRODSEC_TOOLS_USER }}
28+
PRODSEC_TOOLS_TOKEN: ${{ secrets.PRODSEC_TOOLS_TOKEN }}
29+
PRODSEC_TOOLS_ARN: ${{ secrets.PRODSEC_TOOLS_ARN }}
30+
1531
release:
1632
if: github.event.pull_request.merged && startsWith(github.event.pull_request.head.ref, 'release/')
33+
needs: rl-scanner
1734
runs-on: ubuntu-latest
1835

1936
steps:

.github/workflows/rl-scanner.yml

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
name: RL-Secure Workflow
2+
3+
on:
4+
workflow_call:
5+
inputs:
6+
php-version:
7+
required: true
8+
type: string
9+
artifact-name:
10+
required: true
11+
type: string
12+
secrets:
13+
RLSECURE_LICENSE:
14+
required: true
15+
RLSECURE_SITE_KEY:
16+
required: true
17+
SIGNAL_HANDLER_TOKEN:
18+
required: true
19+
PRODSEC_TOOLS_USER:
20+
required: true
21+
PRODSEC_TOOLS_TOKEN:
22+
required: true
23+
PRODSEC_TOOLS_ARN:
24+
required: true
25+
26+
jobs:
27+
rl-scanner:
28+
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.merged && startsWith(github.event.pull_request.head.ref, 'release/'))
29+
runs-on: ubuntu-latest
30+
outputs:
31+
scan-status: ${{ steps.rl-scan-conclusion.outcome }}
32+
33+
steps:
34+
- name: Checkout code
35+
uses: actions/checkout@v4
36+
with:
37+
ref: ${{ github.event.pull_request.head.sha || github.sha || github.ref }}
38+
39+
- name: Setup PHP
40+
uses: shivammathur/setup-php@4bd44f22a98a19e0950cbad5f31095157cc9621b # [email protected]
41+
with:
42+
php-version: ${{ inputs.php-version }}
43+
44+
- name: Build Laravel
45+
shell: bash
46+
run: |
47+
zip -r ${{ inputs.artifact-name }} ./*
48+
49+
- name: Get Artifact Version
50+
id: get_version
51+
uses: ./.github/actions/get-version
52+
53+
- name: Run RL Scanner
54+
id: rl-scan-conclusion
55+
uses: ./.github/actions/rl-scanner
56+
with:
57+
artifact-path: "$(pwd)/${{ inputs.artifact-name }}"
58+
version: "${{ steps.get_version.outputs.version }}"
59+
env:
60+
RLSECURE_LICENSE: ${{ secrets.RLSECURE_LICENSE }}
61+
RLSECURE_SITE_KEY: ${{ secrets.RLSECURE_SITE_KEY }}
62+
SIGNAL_HANDLER_TOKEN: ${{ secrets.SIGNAL_HANDLER_TOKEN }}
63+
PRODSEC_TOOLS_USER: ${{ secrets.PRODSEC_TOOLS_USER }}
64+
PRODSEC_TOOLS_TOKEN: ${{ secrets.PRODSEC_TOOLS_TOKEN }}
65+
PRODSEC_TOOLS_ARN: ${{ secrets.PRODSEC_TOOLS_ARN }}
66+
67+
- name: Output scan result
68+
run: echo "scan-status=${{ steps.rl-scan-conclusion.outcome }}" >> $GITHUB_ENV

phpstan.neon.dist

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ parameters:
1313
- '#Constructor of class (.*) has an unused parameter (.*).#'
1414
- '#Method (.*) has parameter (.*) with no value type specified in iterable type array.#'
1515
- '#no value type specified in iterable type array.#'
16+
- '#Dynamic call to static method (.*).#'
1617

1718
reportUnmatchedIgnoredErrors: false
1819
treatPhpDocTypesAsCertain: false

rector.php

+8-8
Original file line numberDiff line numberDiff line change
@@ -339,8 +339,8 @@
339339
// ArrayShapeFromConstantArrayReturnRector::class,
340340
// BinarySwitchToIfElseRector::class,
341341
BooleanNotIdenticalToNotIdenticalRector::class,
342-
BoolvalToTypeCastRector::class,
343-
CallableThisArrayToAnonymousFunctionRector::class,
342+
//BoolvalToTypeCastRector::class,
343+
//CallableThisArrayToAnonymousFunctionRector::class,
344344
CallUserFuncArrayToVariadicRector::class,
345345
CallUserFuncToMethodCallRector::class,
346346
CallUserFuncWithArrowFunctionToInlineRector::class,
@@ -373,19 +373,19 @@
373373
// FinalizeClassesWithoutChildrenRector::class,
374374
FinalPrivateToPrivateVisibilityRector::class,
375375
FlipTypeControlToUseExclusiveTypeRector::class,
376-
FloatvalToTypeCastRector::class,
376+
//FloatvalToTypeCastRector::class,
377377
ForeachItemsAssignToEmptyArrayToAssignRector::class,
378378
ForeachToInArrayRector::class,
379379
ForRepeatedCountToOwnVariableRector::class,
380380
// ForToForeachRector::class,
381381
FuncGetArgsToVariadicParamRector::class,
382-
GetClassToInstanceOfRector::class,
382+
//GetClassToInstanceOfRector::class,
383383
GetDebugTypeRector::class,
384384
InlineArrayReturnAssignRector::class,
385385
InlineConstructorDefaultToPropertyRector::class,
386386
InlineIfToExplicitIfRector::class,
387387
InlineIsAInstanceOfRector::class,
388-
IntvalToTypeCastRector::class,
388+
//IntvalToTypeCastRector::class,
389389
IsAWithStringWithThirdArgumentRector::class,
390390
IssetOnPropertyObjectToPropertyExistsRector::class,
391391
JoinStringConcatRector::class,
@@ -459,7 +459,7 @@
459459
ReturnNeverTypeRector::class,
460460
ReturnTypeFromReturnDirectArrayRector::class,
461461
ReturnTypeFromReturnNewRector::class,
462-
ReturnTypeFromStrictBoolReturnExprRector::class,
462+
//ReturnTypeFromStrictBoolReturnExprRector::class,
463463
ReturnTypeFromStrictConstantReturnRector::class,
464464
ReturnTypeFromStrictNativeCallRector::class,
465465
ReturnTypeFromStrictNewArrayRector::class,
@@ -507,7 +507,7 @@
507507
StringableForToStringRector::class,
508508
StrlenZeroToIdenticalEmptyStringRector::class,
509509
StrStartsWithRector::class,
510-
StrvalToTypeCastRector::class,
510+
//StrvalToTypeCastRector::class,
511511
SwitchNegatedTernaryRector::class,
512512
SymplifyQuoteEscapeRector::class,
513513
TernaryConditionVariableAssignmentRector::class,
@@ -527,7 +527,7 @@
527527
UnwrapSprintfOneArgumentRector::class,
528528
UseClassKeywordForClassNameResolutionRector::class,
529529
UseIdenticalOverEqualWithSameTypeRector::class,
530-
UseIncrementAssignRector::class,
530+
//UseIncrementAssignRector::class,
531531
// VarAnnotationIncorrectNullableRector::class,
532532
// VarConstantCommentRector::class,
533533
VarToPublicPropertyRector::class,

src/Controllers/CallbackControllerAbstract.php

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
use Throwable;
1919

2020
use function is_string;
21+
use function sprintf;
2122

2223
/**
2324
* @api

src/Controllers/LoginControllerAbstract.php

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
use Illuminate\Http\Request;
1414
use Symfony\Component\HttpFoundation\Response;
1515

16+
use function sprintf;
17+
1618
/**
1719
* Controller for handling a login request.
1820
*

src/Controllers/LogoutControllerAbstract.php

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
use Illuminate\Http\Request;
1313
use Symfony\Component\HttpFoundation\Response;
1414

15+
use function sprintf;
16+
1517
/**
1618
* Controller for handling a logout request.
1719
*

src/Guards/GuardAbstract.php

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
use function is_array;
2323
use function is_int;
2424
use function is_string;
25+
use function sprintf;
2526

2627
/**
2728
* @internal

src/UserProviderAbstract.php

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
use Illuminate\Support\Facades\Cache;
1111

1212
use function is_string;
13+
use function sprintf;
1314

1415
/**
1516
* User provider for the Auth0 user repository.

0 commit comments

Comments
 (0)