Skip to content

Commit d18aba5

Browse files
authored
Merge pull request #23 from isklikas/master
Corrected random to randomize and ported the remaining Unfollow features
2 parents 0982b87 + 0b4488d commit d18aba5

File tree

3 files changed

+53
-7
lines changed

3 files changed

+53
-7
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
node_modules/
33

44
sketch\.txt
5+
6+
package-lock.json

assets/js/app.js

+18-5
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ var params = {
6666
fFollowingAmount: "",
6767
fFollowingDelay: "",
6868
unfollowAmount: "",
69+
unfollowMethod: "",
70+
unfollowOrder: "",
71+
unfollowDelay: "",
6972
interactAmount: "",
7073
interactPercent: ""
7174
},
@@ -220,7 +223,7 @@ var app = {
220223
if (option.interactRandom) {
221224
random = "True";
222225
}
223-
content = `\nsession.set_user_interact(amount=${data.interactAmount}, random=${random}, percentage=${data.interactPercent})\n`;
226+
content = `\nsession.set_user_interact(amount=${data.interactAmount}, randomize=${random}, percentage=${data.interactPercent})\n`;
224227
}
225228

226229
return content;
@@ -284,7 +287,7 @@ var app = {
284287
}
285288
content = `\nsession.follow_user_followers([${this.parser(
286289
data.fFollowersUsers
287-
)}], amount=${data.fFollowersAmount}, sleep_delay=${data.fFollowersDelay}, random=${random}, interact=${interact})`;
290+
)}], amount=${data.fFollowersAmount}, sleep_delay=${data.fFollowersDelay}, randomize=${random}, interact=${interact})`;
288291
}
289292

290293
return content;
@@ -303,7 +306,7 @@ var app = {
303306
}
304307
content = `\nsession.follow_user_following([${this.parser(
305308
data.fFollowingUsers
306-
)}], amount=${data.fFollowingAmount}, sleep_delay=${data.fFollowingDelay}, random=${random}, interact=${interact})`;
309+
)}], amount=${data.fFollowingAmount}, sleep_delay=${data.fFollowingDelay}, randomize=${random}, interact=${interact})`;
307310
}
308311

309312
return content;
@@ -321,9 +324,19 @@ var app = {
321324
},
322325
unfollowUsers: function(on) {
323326
var content = ``;
324-
325327
if (on) {
326-
content = `\nsession.unfollow_users(amount=${data.unfollowAmount})`;
328+
if (data.unfollowMethod == "InstaPy") {
329+
var instaPyMode = `'${data.unfollowMethod}'`;
330+
var onlyInstaPyMode = "True";
331+
content = `\nsession.unfollow_users(amount=${data.unfollowAmount}, onlyInstapyFollowed=${onlyInstaPyMode}, onlyInstapyMethod:${instaPyMode}, sleep_delay=${data.unfollowDelay})`;
332+
}
333+
else if (data.unfollowMethod == "NotFollowing") {
334+
var onlyNotMode = "True";
335+
content = `\nsession.unfollow_users(amount=${data.unfollowAmount}, onlyNotFollowMe=${onlyNotMode}, sleep_delay=${data.unfollowDelay})`;
336+
}
337+
else {
338+
content = `\nsession.unfollow_users(amount=${data.unfollowAmount}, sleep_delay=${data.unfollowDelay})`;
339+
}
327340
}
328341

329342
return content;

index.html

+33-2
Original file line numberDiff line numberDiff line change
@@ -484,10 +484,41 @@
484484
<div class="one wide field">
485485
<label>Users</label>
486486
</div>
487-
<div class="fourteen wide field">
487+
<div class="three wide field">
488488
<div class="ui mini input">
489489
<input id="unfollowAmount" type="number" placeholder="30">
490490
</div>
491+
</div>
492+
<div class="field">
493+
<div class="ui radio checkbox">
494+
<input type="radio" name="unfollowMethod" value="InstaPy">
495+
<label>InstaPy</label>
496+
</div>
497+
</div>
498+
<div class="field">
499+
<div class="ui radio checkbox">
500+
<input type="radio" name="unfollowMethod" value="NotFollowing">
501+
<label>Not Following</label>
502+
</div>
503+
</div>
504+
<div class="field">
505+
<div class="ui radio checkbox">
506+
<input type="radio" name="unfollowMethod" checked="checked" value="None">
507+
<label>None</label>
508+
</div>
509+
</div>
510+
<div class="four wide field">
511+
<div class="ui mini input">
512+
<input id="unfollowOrder" type="text" placeholder="InstaPy only (FIFO/LIFO)">
513+
</div>
514+
</div>
515+
<div class="one wide field">
516+
<label>Delay(s)</label>
517+
</div>
518+
<div class="field">
519+
<div class="ui mini input">
520+
<input id="unfollowDelay" type="text" placeholder="10">
521+
</div>
491522
</div>
492523
</div>
493524
</div>
@@ -582,4 +613,4 @@
582613
})
583614
;
584615
</script>
585-
</html>
616+
</html>

0 commit comments

Comments
 (0)