philippdormann / mensamax-api

unofficial MensaMax-API

Home Page:https://mensa.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MensaMax-API

Scraper for MensaMax products (like mensadigital.de/ mensamax.de/ mensapoint.de)

🍲πŸ₯˜πŸ₯‘πŸ›πŸœπŸ¦πŸ₯”
🍴🍽️ this is just a fancy way of getting some food 🍽️🍴
🍲πŸ₯˜πŸ₯‘πŸ›πŸœπŸ¦πŸ₯”

Deployment donate with PayPal buy me a coffee ko-fi npm

🧐 Usage

General Note: Please use your own caching strategy, MensaMax servers might be quite slow

API usage

see https://mensa.vercel.app/institutions-ui for API URLs

npm package usage

Install package

pnpm i @philippdormann/mensamax-api

ts/ module imports

import { fetchHTML, parser } from '@philippdormann/mensamax-api';
const html = await fetchHTML({ p: 'FO111', e: 'herz', kw: 15 });
const parsed = await parser(html);
console.log(parsed);

CommonJS imports

const { fetchHTML, parser } = require('@philippdormann/mensamax-api');
(async function () {
	try {
		const html = await fetchHTML({ p: 'FO111', e: 'herz', kw: 15 });
		const parsed = await parser(html);
		console.log(parsed);
	} catch (e) {
		console.log(e);
	}
})();

πŸš€ Deployment

This project is deployed as a serverless function on the url https://mensa.vercel.app with Vercel ☁️

🐳 Docker Deployment

This project can be deployed as a docker container. To do so, just run this code:

docker-compose up -d --build

πŸ’» Local Development

Either develop on your machine directly or use the provided devcontainer for VSCode

pnpm i
pnpm dev

πŸ’‘ How this works

  1. Fetch data from url (fetcher.js)
    • fetch VIEWSTATE + VIEWSTATEGENERATOR from .NET with axios
      • hit login endpoint with a GET request
      • request method: POST
      • enable followAllRedirects
      • set login headers
    • setup request (these settings are important)
      • enable cookies
      • request method: POST
      • enable followAllRedirects
      • set login headers
  2. Parsing the data (parser.js)
    • get relevant elements with cheerio
      • timePeriod
      • categories
      • day cards with food items
    • minify html
    • Regex
    • Replace unreadable markup such as internal MensaMax IDs
    • Build JSON from custom markup
  3. Serve via rayo http/ Vercel Serverless Function

🏫 Known/ tested institutions

🧠 General Knowledge

  • For some reason, MensaMax IT department decided to have many URLs
  • These URLs are not interchangeable and seem to be different MensaMax versions (as of 13.04.2023)
  • There is a private/ internal GraphQL API for MensaMax which needs authentication

πŸ‘πŸ’° Support this project

You like this project and would like to give something back? Thanks! Have a look at my profile for more information & options.

About

unofficial MensaMax-API

https://mensa.vercel.app

License:GNU Affero General Public License v3.0


Languages

Language:HTML 89.4%Language:JavaScript 10.5%Language:Dockerfile 0.2%