Skip to content

tsealschott/forge-configurator-inventor

 
 

Repository files navigation

Forge Configurator Inventor

Demo application showcasing Configuration with Design Automation for Inventor

thumbnail

Architecture

See high level diagram

Prerequisites

Web Application

  1. .NET Core 3.1
  2. Node.js
  3. (recommended) Visual Studio Code with extensions:

App Bundles

  1. Autodesk Inventor 2021
  2. Visual Studio 2019

Setup

  1. Clone repository
  2. Create a forge app at https://forge.autodesk.com/, and select the Design Automation API and Data Management API APIs
  3. Enter https://localhost:5001 as the callback URL.
  4. Note the Client ID and Secret generated.
  5. Specify forge credentials.
  6. Copy AppBundles\InventorBinFolder.props.template to AppBundles\InventorBinFolder.props
  7. Replace the PATH_TO_YOUR_INVENTOR_BIN string in the AppBundles\InventorBinFolder.props file with your actual Inventor bin folder path, for example: C:\Program Files\Autodesk\Inventor 2021\Bin
  8. (Optional) Choose network configuration for your application. By default polling is enabled as it offers an easier way to setup and run the application. This is OK for locally run applications and debugging. However in production using the new callback option is highly recommended to conserve resources. In order to enable the callback option modify the Publisher section of the appsettings.json file. Change "CompletionCheck" value from "Polling" to "Callback" and set "CallbackUrlBase" url to your server URL or ngrok tunnel URL for a locally run application. To run and debug callbacks locally please refer to the ngrok section.
  9. (Optional) Specify if access should be limited in WebApplication\appsettings.json. Set Enabled to true or false, and populate the Domains and Addresses fields with comma delimited lists such as ["autodesk.com", "company.com"] and ["person@company2.com", "person@company3.com"].

Build

  • Building the projects also installs required packages (this can take several minutes).

Web Application and App Bundles

  • Open the forge-configurator-inventor.sln file with Visual Studio 2019 and build the solution.

Web Application Alone

  • From a command prompt, go to the WebApplication directory, and run dotnet build.

(Optional) Update the npm packages

  • If you are not running the Application for the first time, but rather getting an update, you may need to install npm packages that were added since your last successfull run:
  1. Using command line go to WebApplication/ClientApp and run npm install. See Adding npm package for more information.

Run The Web Application Without Debugging

Clear and load initial data during app launch time

  • Create initial data: from the WebApplication directory, run dotnet run initialize=true
  • Clear data: from the WebApplication directory, run dotnet run clear=true
  • Clear and then load initial data: from the WebApplication directory, run dotnet run initialize=true clear=true
  • When the app finishes the initialization process it remains running and expects client calls. You can leave it running and follow by opening the site or stop it and move to the the Debugging section

Run after initial data is created

  • From a command prompt, go to the WebApplication directory, and run dotnet run

Open site

  • Navigate to https://localhost:5001
    • You may need to refresh the browser after it launches if you see the error This site can't be reached
    • If you see the error Your Connection is not private, click Advanced and then Proceed to localhost (unsafe). This is due a development certificate being used.

Debug The Web Application With VS Code

  1. Make sure that application is fully initialized, before you start debugging session. Please see the Clear and load initial data
  2. Open the repository root folder in VS Code
  3. In the Run tab, select the Server/Client configuration and click the "Start Debugging" (arrow) button
    • Some browser errors are normal, see open site
    • Disregard C# errors related to AppBundles in VS Code

Run/Debug Tests

Backend

  • Note that running the tests clears initialization data, so you will either need to change forge credentials before running them, or run the initializer again afterward. See Clear and load initial data...
  1. From Visual Studio 2019
    • Open Test Explorer and select tests to run or debug
  2. From Visual Studio Code
    • Open a test file in the WebApplication.Tests directory and click on either Run Test or Debug Test above one of the methods decorated with the [Fact] attribute. Or, above the class declaration click on either Run All Tests or Debug All Tests
  3. From the command line, in either the root or WebApplication.Tests directory run dotnet test

Frontend

  1. In Visual Studio Code, on the Run tab, select the Debug Jest All configuration and click the "Start Debugging" (arrow) button
    • Note that once you run the tests they will only run again if they changed since the last time
  2. Alternatively, using the command line go to WebApplication/ClientApp and execute npm test

UI Tests

  • For UI tests we are using CodeCeptJs framework. All tests are stored in ClientApp/src/ui-tests/ and we filter all files end with *_test.js.
  • Set environment variables SDRA_USERNAME and SDRA_PASSWORD for Sign-in workflow. We are using Autodesk Account credentials for Sign-in.
    • Also you can create a .env file in the WebApplication/ClientApp directory to define the environment variables - for more details follow this link: https://www.npmjs.com/package/dotenv
  • Note that the server needs to be running for these tests
  1. From the WebApplication/ClientApp directory:
    • For all UI tests Run this command: npx codeceptjs run or npm run uitest.
    • For particular file you can use this command: npx codeceptjs run src/ui-tests/<test file name>

Additional Information

Specify Forge credentials

Use one of the following approaches:

  • Set environment variables FORGE_CLIENT_ID and FORGE_CLIENT_SECRET.
  • Create appsettings.Local.json in the WebApplication directory and use the following as its content template:
{
    "Forge": {
        "clientId": "<YOUR CLIENT ID>",
        "clientSecret": "<YOUR CLIENT SECRET>"
       }
}
  • Set environment variables Forge__ClientId and Forge__ClientSecret.
  • (not on dev machine) Modify appsettings.json (or appsettings.<ENVIRONMENT>.json) with the template above.

Backend

We are using the forge service on the backend https://forge.autodesk.com/

.NET Core

We are using the latest version of .NET Core (3.1 at the time of writing) https://dotnet.microsoft.com/download/dotnet-core/3.1

The project was initally created using the command dotnet new react

Forge Design Automation

https://forge.autodesk.com/en/docs/design-automation/v3/developers_guide/overview/

C# SDK https://github.com/Autodesk-Forge/forge-api-dotnet-design.automation

We are using the Inventor and Revit engines.

OSS

Used for storing your designs. For communication with Forge Design Automation

https://forge.autodesk.com/en/docs/data/v2/developers_guide/overview/

C# SDK https://github.com/Autodesk-Forge/forge-api-dotnet-client

Client app

React

https://reactjs.org/

Redux

https://redux.js.org/

We are using redux-thunk for complex and asynchronous operations https://github.com/reduxjs/redux-thunk

Redux DevTool

In index.js replace

const store = createStoreWithMiddleware(mainReducer);

with

const store = createStoreWithMiddleware(mainReducer, window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__());

Autodesk HIG React

https://github.com/Autodesk/hig

Table is not part of todays React HIG implementation so we will use https://github.com/Autodesk/react-base-table

How to

Add npm package to project

We are using npm.

  1. Using command line go to WebApplication/ClientApp and run npm install <package>
    • Note that packages are normally installed as part of the build, but only if the npm_modules directory is not found. This means that when new packages are added, WebApplication/ClientApp/npm install needs to be run again manually by other users (who did not add the new package).

Manually run linter

  • For JavaScript code: npm run lint
  • For CSS: npm run lint-css

Deploy

Project file zip encoding

  • Uploading your project file can cause the error "Project name or assembly contains unsupported characters". This problem typically happens when you use non Latin characters in your project file names and the zip file does not use UTF-8 encoding for the project file names.

  • This issue can be fixed by forcing your zip program of choice to zip the file with the UTF-8 encoding

  • For 7-zip, you can follow these simple steps:

    • After selecting your files for zipping, right-click them and select 7-zip from the context menu
    • Select option "Add to archive..."
    • On the very bottom you can see a text field labelled "Parameters:"
    • Write "cu" without the quotes into that field
    • Press ok
    • Name your resulting zip file
  • For more information on this issue please refer to the FDA troubleshooting page

Use ngrok for localhost callbacks

  • If you choose webhook callback network configuration for the application, you will need a way for the callbacks to get from the FDA servers to your local machine.
  • One of the tools that can assist you with this task is ngrok https://ngrok.com/
  • These steps should help you to set up an ngrok tunnel to your localhost:
    • Create a free ngrok account
    • Download the ngrok executable from https://dashboard.ngrok.com/get-started/setup
    • Unzip the executable
    • (Optional) put the path to the ngrok executable in your system path to make it accessible from everywhere
    • Notice section 2. of the download page. This contains your credentials and full authenticate command for you to copy paste
    • Use the full authentication command from previous step - this only needs to be done once
    • Run ngroc with the format of ngrok http port and set the port number the web application uses on your local machine
    • With default settings the command would look like this: ngrok http 5001
    • You are now ready to use and debug callbacks locally
    • If you experience issues running ngrok tunnel with the web application using https settings, the simple workaround is to switch the app to http mode (only for local use).
    • In order to set the callback URL for local development it is recomended to create an appsettings.Local.json file in the WebApplication directory (if you don't have it already) and then put following settings into it:
    {
        "Publisher": {
            "CompletionCheck": "Callback",
            "CallbackUrlBase": "<YOUR NGROK URL>"
	    }
    }

About

Demo for Autodesk Forge Design Automation for Inventor

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 50.8%
  • C# 46.2%
  • CSS 2.3%
  • Other 0.7%