-
Notifications
You must be signed in to change notification settings - Fork 3.4k
feat(workday): block + tools + misc fixes #3663
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+2,763
−111
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
4a2b8b8
checkpoint workday block
icecrasher321 734f4ee
add icon svg
icecrasher321 70ff0ee
fix workday to use soap api
icecrasher321 8120712
fix SOAP API
icecrasher321 e2b7812
address comments
icecrasher321 e1e5a06
fix
icecrasher321 01a7fbc
more type fixes
icecrasher321 9e02247
address more comments
icecrasher321 4b5e192
fix files
icecrasher321 db76e5b
fix file editor useEffect
icecrasher321 50f68fc
fix build issue
icecrasher321 e74a668
fix typing
icecrasher321 3d1e33a
fix test
icecrasher321 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,67 @@ | ||
| import { createLogger } from '@sim/logger' | ||
| import { type NextRequest, NextResponse } from 'next/server' | ||
| import { z } from 'zod' | ||
| import { checkInternalAuth } from '@/lib/auth/hybrid' | ||
| import { generateRequestId } from '@/lib/core/utils/request' | ||
| import { createWorkdaySoapClient, extractRefId, wdRef } from '@/tools/workday/soap' | ||
|
|
||
| export const dynamic = 'force-dynamic' | ||
|
|
||
| const logger = createLogger('WorkdayAssignOnboardingAPI') | ||
|
|
||
| const RequestSchema = z.object({ | ||
| tenantUrl: z.string().min(1), | ||
| tenant: z.string().min(1), | ||
| username: z.string().min(1), | ||
| password: z.string().min(1), | ||
| workerId: z.string().min(1), | ||
| onboardingPlanId: z.string().min(1), | ||
| actionEventId: z.string().min(1), | ||
| }) | ||
|
|
||
| export async function POST(request: NextRequest) { | ||
| const requestId = generateRequestId() | ||
|
|
||
| try { | ||
| const authResult = await checkInternalAuth(request, { requireWorkflowId: false }) | ||
| if (!authResult.success) { | ||
| return NextResponse.json({ success: false, error: 'Unauthorized' }, { status: 401 }) | ||
| } | ||
|
|
||
| const body = await request.json() | ||
| const data = RequestSchema.parse(body) | ||
|
|
||
| const client = await createWorkdaySoapClient( | ||
| data.tenantUrl, | ||
| data.tenant, | ||
| 'humanResources', | ||
| data.username, | ||
| data.password | ||
| ) | ||
|
|
||
| const [result] = await client.Put_Onboarding_Plan_AssignmentAsync({ | ||
| Onboarding_Plan_Assignment_Data: { | ||
| Onboarding_Plan_Reference: wdRef('Onboarding_Plan_ID', data.onboardingPlanId), | ||
| Person_Reference: wdRef('WID', data.workerId), | ||
| Action_Event_Reference: wdRef('Background_Check_ID', data.actionEventId), | ||
icecrasher321 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| Assignment_Effective_Moment: new Date().toISOString(), | ||
| Active: true, | ||
| }, | ||
| }) | ||
|
|
||
| return NextResponse.json({ | ||
icecrasher321 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| success: true, | ||
| output: { | ||
| assignmentId: extractRefId(result?.Onboarding_Plan_Assignment_Reference), | ||
| workerId: data.workerId, | ||
| planId: data.onboardingPlanId, | ||
| }, | ||
| }) | ||
| } catch (error) { | ||
| logger.error(`[${requestId}] Workday assign onboarding failed`, { error }) | ||
| return NextResponse.json( | ||
| { success: false, error: error instanceof Error ? error.message : 'Unknown error' }, | ||
| { status: 500 } | ||
| ) | ||
| } | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.