All Projects → socializer → socializer

socializer / socializer

Licence: MIT license
Rails engine to make your projects social. Adds stream, profile, circles, groups and notifications.

Programming Languages

ruby
36898 projects - #4 most used programming language
SCSS
7915 projects
HTML
75241 projects

Projects that are alternatives of or similar to socializer

SensorNode
SensorNode-client application for IOTA.
Stars: ✭ 35 (-37.5%)
Mutual labels:  stream
pixieengine.com
Where pixels become heros, together.
Stars: ✭ 25 (-55.36%)
Mutual labels:  social-network
mastodon ynh
Free, open-source social network for YunoHost
Stars: ✭ 67 (+19.64%)
Mutual labels:  social-network
social-login-phpbb
Social Login for phpBB allows your users to login and register with 40+ social networks. It increases your phpBB user registration rate by simplifying the registration process.
Stars: ✭ 48 (-14.29%)
Mutual labels:  social-network
mst-effect
💫 Designed to be used with MobX-State-Tree to create asynchronous actions using RxJS.
Stars: ✭ 19 (-66.07%)
Mutual labels:  stream
elasticbulk
Add data in bulk to elasticsearch. It supports data streaming from PostgreSQL or Filesystem
Stars: ✭ 27 (-51.79%)
Mutual labels:  stream
lwt-pipe
[beta] A multi-consumer, multi-producers blocking queue and stream for Lwt
Stars: ✭ 30 (-46.43%)
Mutual labels:  stream
stream-feed-flutter
Stream Feed official Flutter SDK. Build your own feed experience using Dart and Flutter.
Stars: ✭ 67 (+19.64%)
Mutual labels:  stream
Nitro-Backend
Human-Connection - Social Network Backend
Stars: ✭ 14 (-75%)
Mutual labels:  social-network
NPAudioStream
Continuously stream a playlist of audio through a lightweight Objective-C library.
Stars: ✭ 23 (-58.93%)
Mutual labels:  stream
android-chat-tutorial
Sample apps for the Stream Chat Android SDK's official tutorial
Stars: ✭ 44 (-21.43%)
Mutual labels:  stream
awesome-alternatives
A list of alternative websites/software to popular proprietary services.
Stars: ✭ 123 (+119.64%)
Mutual labels:  social-network
plugin.video.sendtokodi
📺 plays various stream sites on kodi using youtube-dl
Stars: ✭ 86 (+53.57%)
Mutual labels:  stream
approval
🙆‍♂️🙅 Approval flow for Rails
Stars: ✭ 102 (+82.14%)
Mutual labels:  rails-engine
aushape
A library and a tool for converting audit logs to XML and JSON
Stars: ✭ 37 (-33.93%)
Mutual labels:  stream
diaspy
Unofficial Python interface to the DIASPORA* social network
Stars: ✭ 58 (+3.57%)
Mutual labels:  social-network
tpack
Pack a Go workflow/function as a Unix-style pipeline command
Stars: ✭ 55 (-1.79%)
Mutual labels:  stream
LinkedIn Scraper
🙋 A Selenium based automated program that scrapes profiles data,stores in CSV,follows them and saves their profile in PDF.
Stars: ✭ 25 (-55.36%)
Mutual labels:  social-network
lead
Sink your streams.
Stars: ✭ 14 (-75%)
Mutual labels:  stream
felfele
Decentralized social application that respects your privacy
Stars: ✭ 30 (-46.43%)
Mutual labels:  social-network

Socializer Gem Version Status

CI Coverage Status Maintainability Dependency Status Inline docs

Socializer is a rails engine fully dedicated to adding social network capabilities so you can focus on what really matters.

It is designed based on the Wikipedia definition of social networks and the excellent spec from activitystrea.ms. Yes, it may look like a Google+ clone, but Google did a great job implementing the social network definition. And yes, it does a lot less than Google+, we don't have 400 developers on the project.

Important notice

Socializer is not ready for production yet. It's a work in progress. If you would like to get involved, fork and work! Or contact me at [email protected].

Core concepts

People are connected with each other in numerous ways. First of all, they can signify to another person that they want to be connected with them by adding them to their circles. The association between a person and a circle is called a tie. This link is not direct and does not force each person to have the same link. For instance, one person can classify the other as a 'friend', while the other person will return the favor by adding them to their 'colleague' circle. Second, groups are a link between people where all members share the same level of connection with each other. They are all members of the 'Project X Research Group'. The association between a person and a group is called membership.

Like any other social networking application, you can post notes. Notes are pieces of information (currently only text is supported, but pictures, videos, files and more are coming) that you want to keep for posterity.

When you perform actions in Socializer, there is a log of your activities. Activities are shared with an audience. Let's say you perform the action of creating a note. While creating a note, you will have to specify the audience for that note. You can choose between 'Public', 'All your circles', any of your circles, any of your groups, and any of the people you are connected with.

People can view the activity stream with different filters :

  • Profile - you see all the activities of a single person
  • Circle - you see the activities performed by the people in that circle
  • Group - you see the activities performed by the people in that group
  • Home - you see everything from the people you connect with (groups, circles, yourself)

When viewing a stream, people can comment on any of the objects in the stream.

For registration and login, Socializer is currently using omniauth with the following providers: LinkedIn, Facebook, Twitter, Yahoo, Google and Identity. Once your account is created, you can bind multiple authentications to your account. This will be used later on to share your activities with other networking sites.

Installation

Add this line to your application's Gemfile:

gem 'socializer', github: 'socializer/socializer'

And then execute:

$ bundle

Then:

bin/rails socializer:install:migrations

Don't forget to migrate your database:

bin/rails db:migrate

Getting Started

Todo

The todo list is as follows :

  • Finish core components (people, circles, groups, notes, comments)
  • Complete the activity stream (activities, audience)
  • Add notifications (notify a person when an activity affects them directly)
  • Add interaction with other networking sites (authentications)
  • Add a search feature (to find people, groups and notes)
  • Create a comprehensive html structure that can easily be templated in host applications
  • Package the engine cleanly (configurations, file names, etc.)

If you want to contribute

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

The best way to contribute is to do one of the following :

  • Creating tests
  • Refactoring
  • Coding features
  • Correcting logged issues
  • Correcting my English! (I'm a french Canadian, so don't hesitate to fix my sentences or whole paragraphs.)

License

Socializer is available as open source under the terms of the [MIT License] (https://opensource.org/licenses/MIT).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].