-
Notifications
You must be signed in to change notification settings - Fork 133
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
switch MVV to new endpoint with realtime data #414
base: master
Are you sure you want to change the base?
Conversation
The same problem with the expired sessions also happens using the web UI at https://efa.mvv-muenchen.de/ng/XSLT_TRIP_REQUEST2 - so probably this is a bug/restriction on the MVV side :( The website at https://efa.mvv-muenchen.de/index.html uses another endpoint for trip calclation. So maybe the more promising option is to implement the mobile version at https://m.mvv-muenchen.de/jqm/mvv_lite... |
Thanks for your contribution! So which one would you prefer? Use the desktop version and live with the session expiries? Or put more work into the mobile version? Or don't change anything and do without realtime data? |
Your PR looks fine. IDs contained in local databases (e.g. station favorites) could be migrated by clients – I've done this with other providers in the past. |
Not sure - would a session expiry in I tried to implement the mobile version for the trips endpoint as well, it seems that it's really the same format as implemented by the |
Öffi in this case currently shows a "cannot scroll past this point" marker. So it doesn't try to recover from this case. It's difficult to do – somehow you have to match trips just received with trips received in an earlier query. Some providers don't even get their trip IDs stable. |
New observation about the desktop API: Sounds a bit like they do some kind of load balancing and don't share the sessions between the different servers - so it only works when you coincidentally get the same server on the next request... |
Yeah, seems to be exactly that - when the |
I sent an email to the MVV to ask if this can be changed - in principle the server name is already included in the |
Regarding the "new mobile API": If it's logically identical to the already existing mobile API – except the XML tag names – we could rewrite the existing mobile methods in a way that it expects either the short or the long form of element name. I think that should be relatively easy to do and would not add too much clutter. We'd probably need some new support methods in Independently of this, I still plan to refactor the |
Okay, that sounds like a good interface for the methods of the new mobile API. Yes, exactly, it seems that it is logically identical except for the tag names. But I think in Munich the new mobile API has the same problem with the load balancer, so it probably does not really have an advantage over the "non-mobile" XML API. I'll check that again later. |
Yeah, with the new mobile API it's exactly the same problem - if the server responding to the followup request is not the same as for the initial request it gives an error (only difference is that here a Nevertheless I've pushed the changes required to test the new mobile API here - this should include all updated XML tag names needed for the trips requests, I haven't tested the other requests with the mobile API. |
MVV seems to not be helpful in this regard - probably you would first need to ask them for an official permission to use their data:
|
2c9052c
to
72ef473
Compare
Hi @schildbach, I have implemented a workaround to make queryMoreTrips work with the new API despite the load balancer in 72ef473. Instead of using the session-based Do you think this is a viable solution? As I said, the same measures would also be required when implementing the "new mobile API", as it uses the same load balancer. |
FYI, I've had the same issue also with VRN provider in TripKit (this probably applies to pte as well). VGN seems to use the same approach on their website as MVV, as far as I can tell. I've implemented this workaround (72ef473) in my Swift project and could not find any instance where there is a mismatch in trips between the old session based version and your proposed stateless version. |
@alexander-albers Thanks, this looks good! @schildbach, have you had time to take look at the updated PR so far? If you want, I could also implement this workaround as an optional setting for the |
Hi, any update on this? It would be really helpful to get realtime data for MVV because for S-Bahn delays I have to consult the Deutsche Bahn inside Öffi. Also, several times I had the situation where Öffi didn't show a good connection that was, however, shown in the MVV mobile app. I guess the new API does a better job. |
Is the workaround regarding the loadbalancer still needed? I admit that don't really like such workarounds – I vaguely remember doing something similar in the past and it wasn't relyable either. |
Yes, unfortunately it still seems to be the same - if I remove the workaround and run the As I said, the mobile version of the MVV website uses the exact same workaround (looking at the minified JS, functions For the desktop version, we don't know exactly how it does it, because the next/previous trip request is done not directly to the standard XML or JSON EFA endpoints, but through a separate |
I just merged your first commit, the API base change. I'll review the session workaround separately. |
In Öffi, I plan to migrate all locally persisted MVV station IDs (favorites, saved trip queries) like this:
Does this sound reasonable? |
Quoting from the PR description:
No, not in PTE as it is stateless. If you keep state in your app (e.g. favorites), you need to add migration code there. |
I think I'll do away with this migration. The 1000000…2000000 ID range is still used, even on the new endpoint (e.g. Starnberg). |
Yes, true. Let's just migrate the [0…10000[ range (mostly stations within Munich) |
For MVV München, the EFA endpoint that the PTE is currently using (https://efa.mvv-muenchen.de/mobile/) does not provide realtime data (not sure if it did that in the past, but right now it does not).
There are two new endpoints that are currently in use on the MVV website and which have realtime data:
I couldn't get the former one to work with PTE as it seems to use a different XML format (pretty similar to the
...Mobile
functions, but not the same), but the latter one works well, so I implemented that one in this PR.Notes:
91000...
(e.g. München Marienplatz is now91000002
instead of2
), and longer IDs that already started with1000...
also got the additional9
in front. Is it necessary to add some compatibility code to convert the old station IDs into the new ones?queryMoreTrips
call currently fail with aSessionExpiredException
. I am not yet sure why that is, the session cookie andrequestID/sessionID
parameters seem to be passed correctly.