Skip to content

paoloemilioserra/design.automation-nodejs-revit.window.family.create

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

design.automation-nodejs-revit.window.family.create

Node.js npm Platforms Data-Management Design-Automation

Windows .NET Revit-2019

Advanced MIT

Description

This sample demostrated how to create a window family using Design Automation for Revit API V3.

Thumbnail

thumbnail

Live Demo

https://familycreationsample.herokuapp.com/

Main Parts of The Work

  1. Migrate the existing Revit WindowWizard Plugin to be used within AppBundle of Design Automation for Revit. Please check PlugIn

  2. Create your App, upload the AppBundle, define your Activity and test the workitem with the Postman collection under Postman Collection

  3. Create the Web App to call the workitem.

Web App Setup

Prerequisites

  1. Forge Account: Learn how to create a Forge Account, activate subscription and create an app at this tutorial.
  2. Visual Code: Visual Code (Windows or MacOS)
  3. ngrok: Routing tool, download here
  4. Revit 2019: required to compile changes into the plugin
  5. Window family template: A family template that is required while creating window family, you can use this sample template
  6. JavaScript ES6 syntax for server-side
  7. JavaScript basic knowledge with jQuery

For using this sample, you need an Autodesk developer credentials. Visit the Forge Developer Portal, sign up for an account, then create an app. For this new app, use http://localhost:3000/api/forge/callback/oauth as Callback URL, although is not used on 2-legged flow. Finally take note of the Client ID and Client Secret.

Running locally

Install NodeJS, version 8 or newer.

Clone this project or download it (this nodejs branch only). It's recommended to install GitHub desktop. To clone it via command line, use the following (Terminal on MacOSX/Linux, Git Shell on Windows):

git clone -b nodejs https://github.com/JohnOnSoftware/design.automation-nodejs-revit.window.family.create

To run it, install the required packages, set the enviroment variables with your client ID & secret and finally start it. Via command line, navigate to the folder where this repository was cloned and use the following:

Mac OSX/Linux (Terminal)

npm install
export FORGE_CLIENT_ID=<<YOUR CLIENT ID FROM DEVELOPER PORTAL>>
export FORGE_CLIENT_SECRET=<<YOUR CLIENT SECRET>>
export FORGE_CALLBACK_URL=<<YOUR CALLBACK URL>>
export FORGE_WORK_ITEM_CALLBACK_URL=<<YOUR WORKITEM CALLBACK URL>>
npm start

Windows (use Node.js command line from Start menu)

npm install
set FORGE_CLIENT_ID=<<YOUR CLIENT ID FROM DEVELOPER PORTAL>>
set FORGE_CLIENT_SECRET=<<YOUR CLIENT SECRET>>
set FORGE_CALLBACK_URL=<<YOUR CALLBACK URL>>
set FORGE_WORK_ITEM_CALLBACK_URL=<<YOUR WORKITEM CALLBACK URL>>
npm start

ngrok

Run ngrok http 3000 to create a tunnel to your local machine, then copy the address into the FORGE_WORK_ITEM_CALLBACK_URL environment variable. Please check WebHooks for details.

Start the app

Open the browser: http://localhost:3000, the way to create a window family should be straightforwd, just follow the steps:

  1. Select window style, either Double Hung, Fixed, or Sliding Double
  2. Add a couple of family types, and change the parameters accordingly, set the material for Glass Pane and Sash, and change the family file name if necessary
  3. Select a folder in your BIM360 project, the new created family file will be saved there
  4. Click the Create button, and see the result in BIM360

Main Backend API used

File upgrade API based on Design Automation API at routes/da4revit.js

  • POST /api/forge/da4revit/v1/families
  • GET /api/forge/da4revit/v1/families/:family_workitem_id
  • DELETE /api/forge/da4revit/v1/families/:family_workitem_id
  • POST /api/forge/da4revit/callback

File/Folder operation API based on Data Management API at routes/datamanagement.js

  • POST /api/forge/datamanagement/v1/folder
  • DELETE /api/forge//datamanagement/v1/folder/:folder_url
  • GET /api/forge/datamanagement/v1

User information API at routes/user.js

  • GET /api/forge/user/v1/profile

OAuth information API at routes/oauth.js

  • GET /api/forge/oauth/v1/url
  • GET /api/forge/oauth/v1/signout
  • GET /api/forge/oauth/v1/token
  • GET /api/forge/oauth/v1/clientid
  • GET /api/forge/callback/oauth

Packages used

The Autodesk Forge packages is included by default. Some other non-Autodesk packaged are used, including express and multer for upload.

Further Reading

Documentation:

Desktop APIs:

Tips & Tricks

  • The Window family template which is used to create the family should be uploaded first.

Troubleshooting

After installing Github desktop for Windows, on the Git Shell, if you see a error setting certificate verify locations error, use the following:

git config --global http.sslverify "false"

License

This sample is licensed under the terms of the MIT License. Please see the LICENSE file for full details.

Written by

Zhong Wu, Forge Partner Development

About

Window Family Creation Sample of Design Automation for Revit

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 66.1%
  • JavaScript 26.4%
  • HTML 7.4%
  • CSS 0.1%