Skip to content

ericberman/MyFlightbookWeb

Repository files navigation

MyFlightbookWeb

The website and services for MyFlightbook. This provides the back-end for the mobile apps as well.

Getting Started

Setting up the website

  • Run on any Windows machine with ASP.NET 4.5 or later.
  • Make sure IIS has ASP turned on under "application development features".
  • Make sure IIS has HTTP Redirection turned on under Internet Information Services/World Wide Web Services/Common HTTP Features
  • Create 6 folders under "Images": "Aircraft", "BasicMed", "Endorsements", "OfflineEndorsements", "Flights", and "Telemetry". Set permissions on them so that Network Service has full control (so that the website can write thumbnails to these folders).
    NOTE: Visual studio debugging can get very slow if these contain a lot of files/folders, so it's a good idea to mark them as hidden in the file system (top level only is sufficient).
  • Add the following web.config to the Telemetry folder created above, so that it can't serve telemetry directly:
<?xml version="1.0"?>
<configuration>
 <system.webServer>
   <authorization>
     <deny users="?" />
     <deny users="*"/>
   </authorization>
 </system.webServer>
</configuration>
  • Set up the virtual directory for "logbook" pointing to your working directory, convert it to an application. Use ASP.NET 4.5 or later as your application pool. A lot of items point to /logbook, so the root should be the parent folder and the application should be called "logbook" and point to the /logbook branch.
  • Set up a certificate to enable https.
  • Make sure that IIS is set up to serve .KML, .GPX, .PDF, .JPG, .DOCX, .APK (application/vnd.android.package-archive) etc.
  • Add email.config to App_Data so that you can send email:
<?xml version="1.0"?>
<smtp deliveryMethod="Network" from="(your email address)">
    <network defaultCredentials="false" port="587" host="..." userName="..." password="..." />
</smtp>
  • Add connection.config to App_Data so that you can talk to the database:
<?xml version="1.0"?>
 <connectionStrings>
   <add name="logbookConnectionString" connectionString="server=...;User Id=...;password=...;Persist Security Info=false;database=logbook;CharSet=utf8mb4;Pooling=false" providerName="MySql.Data.MySqlClient" />
 </connectionStrings>
  • Review Packages.config and install the requisite products/DLLs (typically via NuGet) into the Bin directory.

Setting up the database

  • Install MySQL and import "MinimalDB-xxxx-xx-xx.sql" (in the Support folder), then apply any/all scripts in that folder that are after that date. The scripts all assue that your database schema is "logbook" (see connection.config above), but you can use any connection you like; just be sure to edit the update scripts if you use other than "logbook".
  • Populate the LocalConfig table with values for the relevant keys. LocalConfig is for keys and secrets (e.g., oAuth access/secret pairs) that one doesn't want to have in the code, and this is necessary for mapping, social media, etc. to work. A development site should work without most of these, but will have degraded functionality. See below for LocalConfig settings and what they mean
  • Need to set packet size to at least 10-15MB: show variables like 'max_allowed_packet'; SET GLOBAL max_allowed_packet=16777216.
  • Not a bad idea to bump up group_concat_max_len to something like 2048.
  • Depending on where MySQL is hosted, may need to set lower_case_table_names=1, since the code is not consistent about upper/lower case for table names.
  • If on 5.7, may need any of the following:
  • sql_mode ALLOW_INVALID_DATES

LocalConfig settings

  • AdminAuthAccessKey - Enables use of certain admin-only functionality
  • AuthorizedWebServiceClients - Comma separated list of authorized clients of the web services
  • AWSAccessKey - Access key for Amazon Web services
  • AWSSecretKey - Secret for Amazon Web Services
  • CloudAhoyID - oAuth ID for CloudAhoy oAuth
  • CloudAhoySecret - oAuth secret for CloudAhoy oAuth
  • DebugDomains - Identifies local domains (e.g., http://localhost) from which oAuth requests may originate
  • DropboxAccessID - Access key for Dropbox
  • DropboxClientSecret - Secret for Dropbox
  • ETSPipelineID - Amazon Elastic Transcoder ID for processing videos
  • ETSPipelineIDDebug - Amazon Elastic Transcoder ID for processing videos from a debug/development website
  • ETSPipelineIDStaging - Amazon Elastic Transcoder ID for processing videos from staging website
  • FacebookAccessID - Access key for Facebook (Obsolete)
  • FacebookClientSecret - Secret for Facebook (Obsolete)
  • facebookAppId - ID for MyFlightbook app on Facebook
  • GoogleAnalyticsDeveloper - ID for google analytics on developer machines (Obsolete)
  • GoogleAnalyticsProduction - ID for google analytics on production environment. (Obsolete)
  • GoogleAnalyticsGA4Developer - ID for current Google Analytics GA4 on developer machine
  • GoogleAnalyticsGA4Production - ID for current Google Analytics GA4 on production environment
  • GoogleDriveAccessID - oAuth ID for Google Drive
  • GoogleDriveClientSecret - oAuth secret for Google Drive
  • GoogleMapID - ID for google maps (required to use AdvancedMarkerElement)
  • GoogleMapsKey - Key for using Google maps. Get your own
  • GooglePlusAccessID - Access key for Google Plus (Obsolete)
  • GooglePlusAPIKey - API key for Google Plus (Obsolete)
  • GooglePlusClientSecret - Secret for Google Plus (Obsolete)
  • LeonClientID - oAuth ID for Leon Scheduling System
  • LeonClientSecret - oAuth secret for Leon Scheduling System
  • OneDriveAccessID - oAuth ID for OneDrive
  • OneDriveClientSecret - oAuth secret for OneDrive
  • PeerRequestEncryptorKey - Key used for encrypting/decrypting requests between peer users
  • SharedDataEncryptorKey - Key used to encrypt access to data being shared with the world
  • rbClientID - oAuth ID for RosterBuster (production)
  • rbClientDIDDev - oAuth ID for RosterBuster (development)
  • TwitterAccessID - oAuth ID for Twitter (obsolete)
  • TwitterClientSecret - Secret for Twitter (Obsolete)
  • UseAWSS3 - Set to "yes" to migrate images to S3. Best to leave this "no" for local debugging
  • UserAccessEncryptorKey - Used to share flights
  • UserPasswordHashKey - Hash key used when storing hashed passwords in the database
  • WebAccessEncryptorKey - key to encrypt/decrypt authorizations on the web service

Additional items

Live Site Only

These are tasks to do ONLY on the live site; there should be no need to set them up on a development environment:

  • Set up a scheduled task to send nightly stats, delete drop-box cache, send nightly email.
  • Install root files (support directory) so that http://xxx/ will go straight to the default home page, and so that favicon.ico will work. Need to edit the file and ensure that default.aspx is the top-level default doc.
  • Ensure reverse DNS is set up for host so that email can be received
  • Set up custom errors in web.config, but TURN THEM OFF in IIS so that oAuth will return errors. IIS->(site)->Error Pages->Edit Feature Settings->Detailed Errors.
  • Use a custom application pool. Then, in IIS Manager go to that pool and under "Edit Application Pool", click "Recycling...". Set the pool to automatically recycle once daily (I use 10pm) and if it uses too much memory (I use 2000000KB - i.e., 2GB)
  • Ensure that 3306 (database) port is closed, ensure that firewall is otherwise appropriately configured

Additional attributions and licenses

This source code is provided under the GNU license, but it incorporates other code as well from a variety of other sources, and each such work is covered by its respective license. This includes, but is not limited to:

  • Ourairports - Open database of worldwide airports ("Unlicense")
  • DayPilot Web-based calendar code for club aircraft scheduling (Apache license)
  • CSV utilities Read/write CSV data (free/unlicensed)
  • EXIF utilities Read/write metadata for images. (free/unlicensed)
  • oAuth1 support for twitter (source forgotten, but source code provided)
  • DotNetOpenAuth Provides oAuth2 support (both client and server). (MS-Pl License)
  • Celestial code (for computing day/night) is adapted from NOAA code at http://www.srrb.noaa.gov/highlights/sunrise/sunrise.html and http://www.srrb.noaa.gov/highlights/sunrise/calcdetails.html
  • Membership and Role management Provides account management and role-based security for MySQL (free/unlicensed)
  • wkHtmlTox Renders HTML to PDF documents. (LGPLv3, but I'm not redistributing any code so I think I don't need to include the license in the source code directly...)
  • SecuritySwitch Enables declaration of which pages must be HTTP or HTTPS (New BSD license)
  • Endless Scroll Enables "endless scroll" functionality in web browsers (MIT/GPL license)
  • JQuery Javascript support library for a bunch of other functionality (MIT License)
  • OverlappingMarkerSpiderfier Enables cleaner handling of overlapping markers on Google Maps - click on one of the overlapping markers, and they spread out like spider-legs, so you can click on the one you want. (MIT License)
  • Scribble-signature control - Enables fingernail scribbling for signing flights using HTML 5 (Code Project Open License)
  • Todataurl-png.js Converts a bitmap into a data URL which can be posted in a form. ("Other" open source license, but code is unmodified)
  • DotNetZip – Microsoft Public License
  • BxSlider - Enables smooth slideshows of images. (MIT License); includes jquery.fitvids.js which is WTFPL license
  • ImageMagick - Enables support for HEIC (Apache License)
  • Numerous binary libraries (via NuGet), including Ajax libraries, iCal libraries, Zip, AWS, DropBox, OneDrive, etc. Current packages

About

The website and service for MyFlightbook

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published