-
Notifications
You must be signed in to change notification settings - Fork 196
Notifications to both iOS & Android mobile via Pushbullet #317
base: master
Are you sure you want to change the base?
Conversation
djv2
commented
Aug 17, 2016
•
edited
Loading
edited
- Sign up & install https://www.pushbullet.com/
- Get your API key from pushbullet. Login to their website > left side under Settings > under Access Tokens
- In models.py, create the pokemon list you want notifications for > mobilealert = {1,2,3,4,5,6,7,8,9} around line 126
- Start the map > go to config > copy paste your API key
- Mobile notification includes pokemon name, expiration time, and google maps link with location
Nice work, would you mind adding disappear time in the notification? |
What can I say? This man commits quicker than his shadow ! |
@Faskill done lol i added expiration time on the push notification. also pushed out getting the API key in the UI (check your config) |
Yeah I saw that :) Looking up pokemons id and manually imputing them in the models.py file is a bit clunky and I think that if you manage to do that your pull request might be merged into the main repo for everyone to benefit ;) |
Another small request : (sorry in advance for probably annoying you, I wish I was better at programming so I could do all of this myself) Can you make it that when you input the pushbutton api key in the config.html page it writes it into config.json for later use? PS : It is working very well for me, thanks a lot by the way ! |
On another note, would it be possible to receive only one notification per unique id?
|
i keep on getting notification about the same pokemon that is scanned and has a despawntime for 15 min. it seems every 5 minutes or so. |
Sorry, I won't merge anything where you need to manually edit some file. Imo this whole notification thing should work like this:
I'm still unsure how to unsubscribe. Maybe a link in the PB message? Also related to #270 |
I agree with Step 1 The biggest problem right now is that it sends you several notifications for the same encounter_id but I think this should be pretty easily fixable. That being say, I would like to thank @djv2 for his work, it's functionning very well and I've caught a Snorlax as well as a 98% IV Eggsecutor when driving back from work thanks to him ;) |
Can you implement a way to use multiple api key? or is it possible to share my notification or to create a button "pushbullet"? |
step 1 (selecting pokemon via stats page) is turning out to be more difficult than i thought. i assumed i could just tap into the existing notification but it's all in JS and not PY :( @Faskill it should already publish to config.json, i just checked mine and it's there. maybe you had an older version? @omlet05 pushbullet allows you to have multiple devices per account per api key. my script, by default, should send a notification to all devices on that account. if you only want it to send to 1 device and not all, that needs to be specified |
@djv2 Thanks for all your work on this, I'm glad you took the suggestions from /r/ and put them in to it's own pull. Sounds like you're really close to having a final product that @nborrmann can implement. IMO, I'd prefer to have the PB key and notifications under the server config page as I don't want "anyone" adding their PB info to my own server... but I get what @nborrmann is saying since it should technically be easier... |
@djv2 thanks, I will git push once my server is down but I edited it myself and it's working well :) |
i believe i have already fixed the encounter_id multiple notifcation problem, just need to test it also, in terms of setting pokemon notification select in UI - i've been looking into but having a hard time getting an array from HTML/JS into Py. any thoughts? |
It works like a charm. Thank you! |
@Faskill just pushed fix for encounter_id multiple notification problem. i tested for myself and it works, hopefully for you too models.py lines 121, 146, 148-152 |
Great work! If you can set it up so that it's possible to add pokemon you want to be notified of on the server config page, that would be amazing. In the meantime, I'm wondering how you would best suggest integrating it with the ability to see lured pokemon? #184 I combined the changes from that PR in with your changes, and I'm able to receive notifications on my mobile for the pokemon I've set up, and I'm able to see lured pokemon on my map (after having to check the "view lured pokemon" box every time I open the map, as it doesn't appear to save the setting). But I'm not able to receive notifications for lured pokemon on my mobile. I'm guessing it's because they have a different ID so it's not recognizing "luredDratini" as Dratini. Any suggestions? Thanks for all the hard work! Loving this. |
@adamblaine hard to help you when #184 doesn't even work for me. have tried multiple times, i even posted in pull |
@djv2 Yeah, I saw that. I was worried mine wasn't working at first after setting it up, but I checked it after it had been running for an hour or so and saw luredPokemon popping up. It's been consistent since then. Did you try saving the raw files from #184 and attempting it with a fresh git clone? The fact that I have to check the box to make them visible each time I load up the map is annoying and should really function like enabling the view Pokemon or Gyms options... but being able to finally see the lured pokemon is well worth it. And receiving notifications when a rare one pops up would be amazing. Let me know if there's anything I can do to help. |
Couldn't notifications settings write to the config.json? Any reason why they shouldn't? |
@adamblaine yea dunno, i triple checked everything i copied/pasted, no go :( @acoreyj it should by default...at least mine is. make sure you have the latest branch (the first one i posted last night didn't work) |
@djv2 Sorry I meant the actual pokemon you have checked notifications for but I realize that its meant for multiple users that may have different notification preferences. I think to do this to work in this case the pushbullet stuff needs to be done client side instead of server side. |
@djv2 okay I might have somewhere to start. If you still have a version with the luredpokemon in it, fire it up. And then don't view it from your PC, access the map from your mobile device, ensure that lured Pokemon check box is enabled, and then see if some pop up. Just dialed into my home PC and the lured Pokemon aren't showing up at all there, even though the check box is enabled. On my phone, though, they all show up without issue. |
@djv2 when the same pokemon spawns on the same spot as before, it seems there's no notification going out. |
@adamblaine tried mobile, still doesn't show lure @donkiel i am unable to reproduce your problem. also as i think about it, there's no place in the code that even checks the location, everything is based on encounter_id (unless you tell me encounter_id is the same for same spot spawn) |
the latest change makes that i dont get notifications anymore or at least not very often since i have the appropiate lists in the models.py. |
I was thinking about the problem of the same Pokémon in the same place and maybe instead of implementing the changes directly to runserver.py this should be modular like the telegram implementation and have it read the database and send notifications via PB that way... |
I think the latest update removing the multiple notifications slows down the process somehow, so I had to revert the commit. Without it I was receiving notifications 9-15 mins before expiry time (my scan duration is 5.5 mins), after pushing the commit I had a much shorter window between 4-10 minutes and I missed a dragonite :( Maybe comparing the encounter_id to all the encounter ids of my large database slows down the process, would it be possible to maybe filter the pokemon_id to reduce the number of fields that need to be analyzed? |
How do i install this commit? sorry i am new to git. i tried typing manually to all the files with all the changes... but ended unable to run python. is there a right way for me to install this commit without doing it all manually? |
Don't know exactly what's going on with this notification system, I've tried to add it here https://github.com/DPr00f/pogom/tree/notifications |
for all those saying they stopped getting new notifications in same location spawn, i just found out that encounter_id is NOT unique (that was what i was checking to prevent dupes) - https://www.reddit.com/r/pokemongodev/comments/4yzwuj/are_encounter_id_s_unique/ i think changing it so it checks for both encounter_id & spawn_id should be safe |
Are you sure there isn't a problem with the delay it takes to scan a large database in order to find duplicate encounter id's? That seems to be the bigger problem with me, I have much less time between the notification and the disappear time when I enable the encounter id filtering How does the notification system work? It only sends me one sound per pokemon, wouldn't it be possible to send me one pushbullet message at the same time? (Maybe adding a filtering option to be able to differentiate between the mons you want both notification and message and the notification only ones) |