Skip to content

Commit f8e7bca

Browse files
Firebase Connected with user authentication
and password security - some places are needed to be check
1 parent 64fc6ab commit f8e7bca

15 files changed

+410
-49
lines changed

StickyNotes2.iml

+9
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,14 @@
7070
<SOURCES />
7171
</library>
7272
</orderEntry>
73+
<orderEntry type="module-library" exported="">
74+
<library>
75+
<CLASSES>
76+
<root url="jar://$MODULE_DIR$/firebasejar/firebase-client-android-2.5.2.jar!/" />
77+
</CLASSES>
78+
<JAVADOC />
79+
<SOURCES />
80+
</library>
81+
</orderEntry>
7382
</component>
7483
</module>
2.13 MB
Binary file not shown.

src/sample/CardDetail.java

+10-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
public class CardDetail
66
{
7+
private int color, imageCount;
78
private String text, date;
8-
private int color;
99
private Card card;
1010

1111
private boolean open;
@@ -15,6 +15,8 @@ public class CardDetail
1515
public CardDetail(String text, int color) {
1616
this.text = text; this.color = color;
1717
open = false;
18+
19+
this.imageCount = 0;
1820
setDateTime();
1921
}
2022

@@ -36,8 +38,13 @@ public void setCard(Card card) {
3638

3739
public void setDateTime() {
3840
dateTime = Constants.getDateTime();
39-
date = dateTime.toString();
4041

41-
// date = dateTime.getDayOfMonth() + " " + dateTime.getMonth().toString().substring(0, 3);
42+
// date = dateTime.toString();
43+
date = dateTime.getDayOfMonth() + " " + Constants.MONTHS[dateTime.getMonthValue()-1];
44+
}
45+
46+
public int getImageCount() { return imageCount; }
47+
public void setImageCount(int factor) {
48+
this.imageCount += factor;
4249
}
4350
}

src/sample/Constants.java

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,23 @@
77
public class Constants {
88

99
public static int WINDOW_WIDTH, WINDOW_HEIGHT;
10-
public static final String[] hexColor = { "#ffd11a", "#00cc00", "#ff80ff", "#d966ff", "#4db8ff", "#b3b3b3", "#404040"};
10+
public static final String[] HEXCOLOR = { "#ffd11a", "#00cc00", "#ff80ff", "#d966ff", "#4db8ff", "#b3b3b3", "#404040"};
1111
public static final int LENGTH = 7;
1212

13+
public static final String[] MONTHS = { "Jan", "Feb", "Mar", "Apr", "May", "Jun",
14+
"Jul", "Aug", "Sep", "Oct", "Nov", "Dev"};
15+
1316
public static final int SPEED = 100;
1417
public static final String selectColor = "#d9d9d9";
1518

1619
public static int randomColor;
1720
public static CardDetail card;
1821
public static Stage currStage;
1922

23+
public static UserDetail user;
24+
25+
public static final String FIREBASE_LINK = "https://stickynotes-efe5c.firebaseio.com/";
26+
2027
public static LocalDateTime getDateTime() {
2128
return LocalDateTime.now();
2229
}

src/sample/FirebaseConfig.java

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
package sample;
2+
3+
import com.firebase.client.DataSnapshot;
4+
import com.firebase.client.Firebase;
5+
import com.firebase.client.FirebaseError;
6+
import com.firebase.client.ValueEventListener;
7+
8+
public class FirebaseConfig {
9+
10+
public static Firebase firebase = null;
11+
12+
public static void SetUpConnection() {
13+
try {
14+
firebase = new Firebase(Constants.FIREBASE_LINK);
15+
return;
16+
}
17+
catch (Exception e) {}
18+
19+
firebase = null;
20+
if(firebase == null) System.out.println("Not Connected");
21+
}
22+
23+
public static void addUserToFirebase(UserDetail requestUser) {
24+
25+
firebase.child("Users").addListenerForSingleValueEvent(new ValueEventListener() {
26+
@Override
27+
public void onDataChange(DataSnapshot dataSnapshot) {
28+
29+
for(DataSnapshot user : dataSnapshot.getChildren()) {
30+
UserDetail userDetail = user.getValue(UserDetail.class);
31+
//
32+
if(userDetail.getUsername().equals(requestUser.getUsername())) {
33+
System.out.println("Already Exists");
34+
return;
35+
}
36+
}
37+
38+
firebase.child("Users").push().setValue(requestUser);
39+
System.out.println("Newly Added");
40+
}
41+
42+
@Override
43+
public void onCancelled(FirebaseError firebaseError) {
44+
45+
}
46+
});
47+
}
48+
49+
public static void AddUser() {
50+
if(firebase != null) { addUserToFirebase(Constants.user); }
51+
else System.out.println("Not Connected");
52+
}
53+
}

src/sample/Main.java

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ public void start(Stage primaryStage) throws Exception {
2626
Constants.WINDOW_HEIGHT = (int) window.getHeight();
2727
Constants.WINDOW_WIDTH = (int) window.getWidth();
2828

29+
FirebaseConfig.SetUpConnection();
2930
}
3031

3132
public static void main(String[] args) {

src/sample/NoteController.java

+27-6
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,29 @@
11
package sample;
22

33
import com.jfoenix.controls.JFXButton;
4+
import com.jfoenix.controls.JFXListView;
5+
import com.jfoenix.controls.JFXScrollPane;
46
import com.jfoenix.controls.JFXTextArea;
57
import javafx.animation.FadeTransition;
68
import javafx.animation.TranslateTransition;
9+
import javafx.beans.value.ChangeListener;
10+
import javafx.beans.value.ObservableValue;
711
import javafx.event.ActionEvent;
812
import javafx.event.Event;
913
import javafx.fxml.FXML;
1014
import javafx.fxml.FXMLLoader;
1115
import javafx.fxml.Initializable;
16+
import javafx.geometry.Orientation;
17+
import javafx.geometry.Rectangle2D;
1218
import javafx.scene.Node;
1319
import javafx.scene.Scene;
1420
import javafx.scene.image.Image;
1521
import javafx.scene.input.MouseEvent;
1622
import javafx.scene.layout.BorderPane;
1723
import javafx.scene.layout.FlowPane;
1824
import javafx.scene.layout.Pane;
25+
import javafx.scene.layout.VBox;
26+
import javafx.stage.Screen;
1927
import javafx.stage.Stage;
2028
import javafx.stage.WindowEvent;
2129
import javafx.util.Duration;
@@ -25,9 +33,12 @@
2533

2634
public class NoteController implements Initializable {
2735

28-
@FXML private JFXTextArea noteArea;
29-
@FXML private BorderPane addButton, ellipseButton, deleteButton, progressBar;
3036
@FXML private JFXButton color1, color2, color3, color4, color5, color6, color7;
37+
@FXML private BorderPane addButton, ellipseButton, deleteButton, progressBar;
38+
@FXML private JFXTextArea noteArea;
39+
@FXML private VBox scrollBox;
40+
@FXML
41+
private JFXListView<Pane> imageView;
3142

3243
@FXML private FlowPane leftPane, rightPane;
3344
@FXML private Pane midPane, separator;
@@ -136,8 +147,16 @@ public void initialize(URL location, ResourceBundle resources) {
136147
}
137148
});
138149

150+
imageView.getSelectionModel().selectedItemProperty().addListener(new ChangeListener<Pane>() {
151+
@Override
152+
public void changed(ObservableValue<? extends Pane> observable, Pane oldValue, Pane newValue) {
153+
154+
System.out.println(imageView.getSelectionModel().getSelectedIndex());
155+
}
156+
});
157+
139158
initialColor = Constants.randomColor;
140-
fillTitleBarColor(Constants.hexColor[initialColor]);
159+
fillTitleBarColor(Constants.HEXCOLOR[initialColor]);
141160

142161
cardDetail = Constants.card;
143162
Constants.card = null;
@@ -154,7 +173,7 @@ public void colorHandler(ActionEvent event) {
154173

155174
for(int i = 0; i < Constants.LENGTH; i++) {
156175
if(event.getSource() == arrColor[i]) {
157-
fillTitleBarColor(Constants.hexColor[i]);
176+
fillTitleBarColor(Constants.HEXCOLOR[i]);
158177
}
159178
}
160179
}
@@ -175,7 +194,7 @@ private void disappearColors(FadeTransition[] fadeArray, int index) {
175194
fadeArray[index].setFromValue(1);
176195
fadeArray[index].setToValue(0);
177196
fadeArray[index].play();
178-
fadeArray[index].setOnFinished(event -> disappearColors(fadeArray, index+1));
197+
fadeArray[index].setOnFinished(event -> disappearColors(fadeArray, index + 1));
179198
}
180199

181200
public void setNoteArea(String text) {
@@ -186,14 +205,16 @@ public void setNoteArea(String text) {
186205
Stage stage = (Stage) ((Node)event.getSource()).getScene().getWindow();
187206
stage.setY(event.getScreenY() - note_y);
188207
stage.setX(event.getScreenX() - note_x);
189-
190208
}
191209

192210
@FXML public void mousePressed(MouseEvent event) {
193211
note_x = event.getSceneX();
194212
note_y = event.getSceneY();
195213
}
196214

215+
private void resizeImageView(int size) {
216+
scrollBox.setPrefHeight(size); imageView.setPrefHeight(size-1);
217+
}
197218
private void deleteNote(MouseEvent event)
198219
{
199220
if(cardDetail != null)

src/sample/SplashController.java

+18-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
import javafx.scene.layout.Pane;
1212
import javafx.stage.Stage;
1313
import javafx.stage.StageStyle;
14-
import javafx.stage.WindowEvent;
1514
import javafx.util.Duration;
1615

1716
import java.net.URL;
@@ -31,6 +30,9 @@ public void initialize(URL location, ResourceBundle resources) {
3130
fadeOut.play();
3231
fadeOut.setOnFinished(event -> {
3332
try {
33+
34+
generateUserDetails();
35+
3436
Stage primaryStage = new Stage();
3537
Parent root = FXMLLoader.load(getClass().getResource("stickyframe.fxml"));
3638

@@ -56,4 +58,19 @@ public void initialize(URL location, ResourceBundle resources) {
5658
}
5759
});
5860
}
61+
62+
public void generateUserDetails() {
63+
// Constants.user = new UserDetail(
64+
// "ashishhattimare",
65+
// "Ashish Gopal Hattimare",
66+
67+
// "password");
68+
69+
Constants.user = new UserDetail(
70+
"nishthapathak1997",
71+
"Nishtha Pathak",
72+
"[email protected]", UserDetail.passwordHash("ihateyou"));
73+
74+
FirebaseConfig.AddUser();
75+
}
5976
}

src/sample/StickyController.java

+33-4
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ public class StickyController implements Initializable {
4949
private int selectedTile;
5050

5151
public static ArrayList<CardDetail> cardList = new ArrayList<>();
52+
public static long prevTime, currTime;
5253

5354
@Override
5455
public void initialize(URL location, ResourceBundle resources) {
@@ -134,6 +135,8 @@ public void initialize(URL location, ResourceBundle resources) {
134135

135136
clearImageVisible = false;
136137
clearImage.setOpacity(0);
138+
139+
prevTime = 0;
137140
}
138141

139142
@FXML void keyReleased(KeyEvent event)
@@ -252,21 +255,46 @@ public void onBindViewHolder(Card card, Object obj) {
252255
card.textArea.setText(cd.getText());
253256
card.date.setText(cd.getDate());
254257

255-
card.colorPane.setStyle("-fx-background-color: " + Constants.hexColor[cd.getColor()]);
256-
card.date.setStyle("-fx-text-fill: " + Constants.hexColor[cd.getColor()]);
258+
card.colorPane.setStyle("-fx-background-color: " + Constants.HEXCOLOR[cd.getColor()]);
259+
card.date.setStyle("-fx-text-fill: " + Constants.HEXCOLOR[cd.getColor()]);
257260

258261
card.cardBorderPane.setOnMouseExited(event -> {
259262
if(!PopUpOpen) {
260-
card.date.setStyle("-fx-text-fill: " +Constants.hexColor[cd.getColor()]);
263+
card.date.setStyle("-fx-text-fill: " +Constants.HEXCOLOR[cd.getColor()]);
261264
card.date.setText(cd.getDate());
265+
266+
card.noteBorder.setStyle("-fx-background-color:#737373");
262267
}
263268
});
264269
card.cardBorderPane.setOnMouseEntered(event -> {
265270
card.date.setStyle("-fx-text-fill: #bfbfbf");
266271
card.date.setText("•••");
272+
273+
card.noteBorder.setStyle("-fx-background-color:#4d4d4d");
267274
});
268275
card.cardBorderPane.setOnMouseClicked(event -> {
269276
PopUpOpen = false;
277+
278+
card.noteBorder.setStyle("-fx-background-color:#4d4d4d");
279+
280+
currTime = System.currentTimeMillis();
281+
if(Math.abs(currTime-prevTime) <= 500) { // open this tile
282+
283+
selectedTile = recyclerView.getSelectionModel().getSelectedIndex();
284+
popoverMenu.hide();
285+
286+
try {
287+
if(!(cd.isOpen()) || true) {
288+
initNewNote(cd.getText(), selectedTile);
289+
cd.changeOpen(true);
290+
}
291+
else {
292+
System.out.println("Its already open");
293+
}
294+
}
295+
catch (Exception ignored) { }
296+
}
297+
prevTime = currTime;
270298
});
271299

272300
card.date.setOnMouseExited(event -> { card.date.setStyle("-fx-text-fill: #bfbfbf"); });
@@ -278,6 +306,7 @@ public void onBindViewHolder(Card card, Object obj) {
278306
popoverMenu.setAnimated(true);
279307
PopUpOpen = true;
280308
});
309+
281310
}
282311
}
283312
}
@@ -287,7 +316,7 @@ class Card extends RecyclerView.ViewHolder {
287316
@FXML public Label textArea;
288317
@FXML public Label date;
289318
@FXML public Pane colorPane;
290-
@FXML public BorderPane cardBorderPane, cardBorder;
319+
@FXML public BorderPane cardBorderPane, cardBorder, noteBorder;
291320

292321
public Card(FXMLLoader loader) {
293322
super(loader);

src/sample/UserController.java

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package sample;
2+
3+
public class UserController {
4+
}

0 commit comments

Comments
 (0)